Skip to content

Commit 7da48e8

Browse files
committed
docs: add library dartdoc and 100% public_member_api_docs coverage
1 parent 0e36b8e commit 7da48e8

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/// Code generator for [flutter_secure_dotenv](https://pub.dev/packages/flutter_secure_dotenv).
2+
///
3+
/// Reads `.env` files at build time, encrypts the values with AES-CBC, and
4+
/// emits a `part` file containing the encrypted data.
5+
library;
6+
17
import 'package:build/build.dart';
28
import 'package:source_gen/source_gen.dart';
39

@@ -7,7 +13,6 @@ import 'src/annotation_generator.dart';
713
///
814
/// Takes [options] as a parameter to configure the builder.
915
Builder flutterSecureDotEnvAnnotation(BuilderOptions options) =>
10-
SharedPartBuilder(
11-
[FlutterSecureDotEnvAnnotationGenerator(options)],
12-
'flutter_secure_dot_env_annotation',
13-
);
16+
SharedPartBuilder([
17+
FlutterSecureDotEnvAnnotationGenerator(options),
18+
], 'flutter_secure_dot_env_annotation');

0 commit comments

Comments
 (0)