mekAssetsBuilder function
Builder
mekAssetsBuilder(
- BuilderOptions options
Supports package:build_runner creation and configuration of
json_serializable.
Not meant to be invoked by hand-authored code.
Implementation
// https://github.com/dart-lang/build/blob/build_runner-v2.6.0/docs/writing_a_builder.md
Builder mekAssetsBuilder(BuilderOptions options) {
final config = MekAssetsConfig.fromJson(options.config);
return _AssetsBuilder(config);
}