angel_model 1.0.3 copy "angel_model: ^1.0.3" to clipboard
angel_model: ^1.0.3 copied to clipboard

Angel's basic data model class, no longer with the added weight of the whole framework.

example/main.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);
}
0
likes
40
pub points
18%
popularity

Publisher

verified publisherangel-dart.dev

Angel's basic data model class, no longer with the added weight of the whole framework.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

More

Packages that depend on angel_model