platform/packages/model/example/main.dart
thomashii@dukefirehawk.com d4794dbbd1 Upgraded lints to 3.0.0
2023-12-24 09:52:57 +08:00

19 lines
347 B
Dart

import 'package:angel3_model/angel3_model.dart';
void main() {
var todo = Todo(id: '34', isComplete: false);
print(todo.idAsInt == 34);
}
class Todo extends Model {
String? text;
bool isComplete;
Todo(
{required String super.id,
this.text,
this.isComplete = false,
super.createdAt,
super.updatedAt});
}