Create Size from JSON
factory Size.fromJson(Map<String, dynamic> json) { return Size( json['width'] ?? 0.0, json['height'] ?? 0.0, ); }