FluentRow.fromJson constructor
Implementation
factory FluentRow.fromJson(Map<String, dynamic> json) {
final row = _$FluentRowFromJson(json);
row.id = json['id'] as String? ?? row.id;
row.rowHeight = (json['rowHeight'] as num?)?.toDouble();
return row;
}