json_parser_annotations 1.0.1 copy "json_parser_annotations: ^1.0.1" to clipboard
json_parser_annotations: ^1.0.1 copied to clipboard

Annotations to support analysis and code-gen features for json_parser package.

example/example.dart

import 'package:json_parser_annotations/json_parser_annotations.dart';

@GenerateJsonParser()
class User {
  final int id;
  final String name;

  User(this.id, this.name);

  @override
  String toString() {
    return 'User{id: $id, name: $name}';
  }
}
0
likes
160
points
109
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Annotations to support analysis and code-gen features for json_parser package.

Homepage
Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

More

Packages that depend on json_parser_annotations