blob: 009a6718d182a41f1c01ab151e1580e8d037a653 [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:nnbd_migration/src/front_end/resources/resources.g.dart'
as resources;
import 'package:nnbd_migration/src/preview/preview_page.dart';
import 'package:nnbd_migration/src/preview/preview_site.dart';
/// The page that contains the Dart logo.
class DartLogoPage extends PreviewPage {
/// Initialize a newly created Dart logo page within the given [site].
DartLogoPage(PreviewSite site)
: super(site, PreviewSite.dartLogoPath.substring(1));
@override
bool get requiresAuth => false;
@override
void generateBody(Map<String, String> params) {
throw UnimplementedError();
}
@override
Future<void> generatePage(Map<String, String> params) async {
buf.write(resources.dart_192_png);
}
}