import method
Define the actual import code. path
is passed relative to lib
, baseName
is the filename, and className
is the filename converted to Pascal case.
実際のインポートコードを定義します。path
にlib
からの相対パス、baseName
にファイル名が渡され、className
にファイル名をパスカルケースに変換した値が渡されます。
Implementation
@override
String import(String path, String baseName, String className) {
return """
// Copyright ${DateTime.now().format("yyyy")} mathru. All rights reserved.
/// masamune_module for specific app.
///
/// To use, import `package:masamune_module_${className.toSnakeCase()}/masamune_module_${className.toSnakeCase()}.dart`.
///
/// [mathru.net]: https://mathru.net
/// [YouTube]: https://www.youtube.com/c/mathrunetchannel
library masamune_module_${className.toSnakeCase()};
import 'package:flutter/material.dart';
import 'package:masamune/masamune.dart';
import 'package:masamune_module/masamune_module.dart';
import 'package:masamune_universal_ui/masamune_universal_ui.dart';
""";
}