fromJson static method

DBRPGet fromJson(
  1. dynamic value
)

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']),
  );
}