fromJson static method
Returns a new DBRPGet instance and imports
Implementation
// ignore: prefer_constructors_over_static_methods
static DBRPGet fromJson(dynamic value) {
final json = value.cast<String, dynamic>();
return DBRPGet(
content:
json[r'content'] == null ? null : DBRP.fromJson(json[r'content']),
);
}