ackSchemaBuilder function

Builder ackSchemaBuilder(
  1. BuilderOptions options
)

Main builder function - keeps it simple

Implementation

Builder ackSchemaBuilder(BuilderOptions options) {
  return PartBuilder(
    [AckSchemaGenerator()],
    '.g.dart',
    header: '''
// GENERATED CODE - DO NOT MODIFY BY HAND

// ignore_for_file: unnecessary_this, unnecessary_new, unnecessary_const, prefer_collection_literals
// ignore_for_file: lines_longer_than_80_chars, unnecessary_null_checks, non_constant_identifier_names
''',
  );
}