class InPlace { InPlace({ this.y, this.n,}); InPlace.fromJson(dynamic json) { y = json['y']; n = json['n']; } int? y; int? n; Map toJson() { final map = {}; map['y'] = y; map['n'] = n; return map; } }