This repository has been archived on 2024-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
|
class InPlace {
|
|
InPlace({
|
|
this.y,
|
|
this.n,});
|
|
|
|
InPlace.fromJson(dynamic json) {
|
|
y = json['y'];
|
|
n = json['n'];
|
|
}
|
|
int? y;
|
|
int? n;
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final map = <String, dynamic>{};
|
|
map['y'] = y;
|
|
map['n'] = n;
|
|
return map;
|
|
}
|
|
|
|
} |