106535751b
git-subtree-dir: packages/model git-subtree-mainline:cf2ad35d2b
git-subtree-split:308cd94c78
20 lines
393 B
Dart
20 lines
393 B
Dart
import 'package:angel_model/angel_model.dart';
|
|
|
|
void main() {
|
|
var todo = Todo(id: '34', isComplete: false);
|
|
print(todo.idAsInt == 34);
|
|
}
|
|
|
|
class Todo extends Model {
|
|
String text;
|
|
|
|
bool isComplete;
|
|
|
|
Todo(
|
|
{String id,
|
|
this.text,
|
|
this.isComplete,
|
|
DateTime createdAt,
|
|
DateTime updatedAt})
|
|
: super(id: id, createdAt: createdAt, updatedAt: updatedAt);
|
|
}
|