class_fields_annotation 0.1.0 class_fields_annotation: ^0.1.0 copied to clipboard
The annotation package for the fields generator. Generate all field names as Strings
import 'package:class_fields_annotation/class_fields_annotation.dart';
@fields
class MyClass {
const MyClass({
required this.name,
required this.age,
});
final String name;
final int age;
}