2021-06-14 01:37:53 +00:00
|
|
|
import 'package:angel3_serialize/angel3_serialize.dart';
|
|
|
|
import 'package:graphql_schema2/graphql_schema2.dart';
|
2019-04-29 17:12:23 +00:00
|
|
|
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
|
|
|
}
|