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

105 lines
2.3 KiB
Dart
Raw Normal View History

2017-06-17 01:26:19 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
part of angel_serialize.test.models.book;
// **************************************************************************
2018-06-29 04:11:57 +00:00
// JsonModelGenerator
2017-06-17 01:26:19 +00:00
// **************************************************************************
@generatedSerializable
2018-02-27 19:57:05 +00:00
class Book extends _Book {
Book(
{this.id,
this.author,
this.title,
this.description,
this.pageCount,
2018-05-15 19:01:13 +00:00
List<double> notModels,
2018-03-09 12:43:17 +00:00
this.camelCaseString,
2018-02-27 19:57:05 +00:00
this.createdAt,
2018-05-15 19:01:13 +00:00
this.updatedAt})
: this.notModels = new List.unmodifiable(notModels ?? []);
2018-02-27 19:57:05 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final String id;
2017-06-17 01:26:19 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final String author;
2017-06-17 01:26:19 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final String title;
2017-06-17 01:26:19 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final String description;
2017-06-17 01:26:19 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final int pageCount;
2017-06-17 01:26:19 +00:00
2018-03-05 06:18:46 +00:00
@override
final List<double> notModels;
2018-03-09 12:43:17 +00:00
@override
final String camelCaseString;
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final DateTime createdAt;
2017-06-17 01:26:19 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final DateTime updatedAt;
2018-02-28 00:36:53 +00:00
Book copyWith(
{String id,
String author,
String title,
String description,
int pageCount,
2018-03-05 06:18:46 +00:00
List<double> notModels,
2018-03-09 12:43:17 +00:00
String camelCaseString,
2018-02-28 00:36:53 +00:00
DateTime createdAt,
DateTime updatedAt}) {
return new Book(
id: id ?? this.id,
author: author ?? this.author,
title: title ?? this.title,
description: description ?? this.description,
pageCount: pageCount ?? this.pageCount,
2018-03-05 06:18:46 +00:00
notModels: notModels ?? this.notModels,
2018-03-09 12:43:17 +00:00
camelCaseString: camelCaseString ?? this.camelCaseString,
2018-02-28 00:36:53 +00:00
createdAt: createdAt ?? this.createdAt,
updatedAt: updatedAt ?? this.updatedAt);
}
2018-02-28 01:49:14 +00:00
2018-05-13 18:02:47 +00:00
bool operator ==(other) {
return other is _Book &&
other.id == id &&
other.author == author &&
other.title == title &&
other.description == description &&
other.pageCount == pageCount &&
const ListEquality<double>(const DefaultEquality<double>())
.equals(other.notModels, notModels) &&
other.camelCaseString == camelCaseString &&
other.createdAt == createdAt &&
other.updatedAt == updatedAt;
}
2018-11-03 07:36:59 +00:00
@override
int get hashCode {
return hashObjects([
id,
author,
title,
description,
pageCount,
notModels,
camelCaseString,
createdAt,
updatedAt
]);
}
2018-02-28 01:49:14 +00:00
Map<String, dynamic> toJson() {
return BookSerializer.toMap(this);
}
2017-06-17 01:26:19 +00:00
}