platform/angel_serialize_generator/test/models/book.serializer.g.dart

22 lines
592 B
Dart
Raw Normal View History

// GENERATED CODE - DO NOT MODIFY BY HAND
part of angel_serialize.test.models.book;
// **************************************************************************
// Generator: SerializerGenerator
// **************************************************************************
2018-02-28 01:10:57 +00:00
abstract class BookSerializer {
Map<String, dynamic> toMap() {
return {
'id': id,
'author': author,
'title': title,
'description': description,
'page_count': pageCount,
2018-02-28 01:10:57 +00:00
'created_at': createdAt.toIso8601String(),
'updated_at': updatedAt.toIso8601String()
};
}
}