copyWith method

Implementation

FlutterSpreadsheetUIRow copyWith({
  double? height,
  List<FlutterSpreadsheetUICell>? cells,
}) =>
    FlutterSpreadsheetUIRow(
      height: height ?? this.height,
      cells: cells ?? this.cells,
    );