fromJson static method
Implementation
// ignore: prefer_constructors_over_static_methods
static Row fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return Row(
entityId: mapValueOfType<int>(json, r'EntityId'),
cells: Cell.listFromJson(json[r'Cells']),
);
}
return null;
}