artifact 1.0.14
artifact: ^1.0.14 copied to clipboard
Data Modeling for the local madman
import 'package:artifact/artifact.dart';
@Artifact(generateSchema: true)
class Base {
final double baseValue;
final Other other;
const Base({this.baseValue = 0, this.other = const Other()});
}
@Artifact(generateSchema: true)
class Other {
final String name;
final int age;
const Other({this.name = "", this.age = 0});
}