import method

  1. @override
String import(
  1. String path,
  2. String baseName,
  3. String className
)
override

Define the actual import code. path is passed relative to lib, baseName is the filename, and className is the filename converted to Pascal case.

実際のインポートコードを定義します。pathlibからの相対パス、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';
""";
}