2019-04-29 17:12:23 +00:00
|
|
|
import 'package:angel_serialize/angel_serialize.dart';
|
|
|
|
import 'package:graphql_schema/graphql_schema.dart';
|
|
|
|
part 'todo.g.dart';
|
|
|
|
|
|
|
|
@graphQLClass
|
|
|
|
@serializable
|
|
|
|
abstract class _Todo extends Model {
|
2021-06-14 01:28:20 +00:00
|
|
|
String? get text;
|
2019-04-29 17:12:23 +00:00
|
|
|
|
2021-06-14 01:28:20 +00:00
|
|
|
bool? get isComplete;
|
2019-04-29 17:12:23 +00:00
|
|
|
}
|