factory Data.fromJson(Map<String, dynamic> json) { return Data( error: json['error'] != null ? ErrorData.fromJson(json['error']) : null, ); }