zikzak_morphy 2.9.1
zikzak_morphy: ^2.9.1 copied to clipboard
A powerful code generation package for Dart/Flutter that provides clean class definitions with copyWith, JSON serialization, toString, equality, and inheritance support
//see example project in github for more examples
//THE SIMPLEST OF EXAMPLES
import 'package:zikzak_morphy/zikzak_morphy.dart';
part 'example.morphy.dart';
part 'example.g.dart';
@Morphy(generateJson: true)
abstract class $Pet {
String get type;
}