factory Resolution.fromJson(Map<String, dynamic> json) { return Resolution( height: json['height'] as int?, width: json['width'] as int?, ); }