-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathproject.dart
66 lines (52 loc) · 1.8 KB
/
project.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// GENERATED CODE - DO NOT MODIFY BY HAND
import 'package:flutter/foundation.dart';
import 'package:json_annotation/json_annotation.dart';
import 'package:model_generator_example/model/status/status.dart';
part 'project.g.dart';
@JsonSerializable(explicitToJson: true)
@immutable
class Project {
@JsonKey(
name: 'name',
required: false,
disallowNullValue: false,
includeIfNull: false)
final String name;
@JsonKey(name: 'cost', includeIfNull: false)
final double? cost;
@JsonKey(
name: 'status', includeIfNull: false, unknownEnumValue: Status.STATUS_0)
final Status? status;
const Project({
this.name = 'test',
this.cost = 0.2,
this.status,
});
factory Project.fromJson(Object? json) =>
_$ProjectFromJson(json as Map<String, dynamic>); // ignore: avoid_as
Map<String, dynamic> toJson() => _$ProjectToJson(this);
// ignore: prefer_constructors_over_static_methods
static Project create(Object? json) => Project.fromJson(json);
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is Project &&
runtimeType == other.runtimeType &&
name == other.name &&
cost == other.cost &&
status == other.status;
@override
int get hashCode => name.hashCode ^ cost.hashCode ^ status.hashCode;
@override
String toString() => 'Project{'
'name: $name, '
'cost: $cost, '
'status: $status'
'}';
}
const deserializeProject = Project.fromJson;
Map<String, dynamic> serializeProject(Project object) => object.toJson();
List<Project> deserializeProjectList(List<Map<String, dynamic>> jsonList) =>
jsonList.map(Project.fromJson).toList();
List<Map<String, dynamic>> serializeProjectList(List<Project> objects) =>
objects.map((object) => object.toJson()).toList();