FluentRow.fromJson constructor

FluentRow.fromJson(
  1. Map<String, dynamic> json
)

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;
}