readClipboardPastePlan abstract method

Future<FdcGridRangeSelectionPastePlan?> readClipboardPastePlan({
  1. required FdcGridRangeSelectionBounds bounds,
  2. required int rowCount,
  3. required int columnCount,
  4. required bool fillSingleValue,
  5. required FdcGridRangeSelectionCellEditablePredicate isCellEditable,
  6. required FdcGridRangeSelectionCellTextParser parseCellText,
})

Reads tabular clipboard text and builds a validated paste plan for bounds.

Returns null when clipboard content cannot produce an applicable update.

Implementation

Future<FdcGridRangeSelectionPastePlan?> readClipboardPastePlan({
  required FdcGridRangeSelectionBounds bounds,
  required int rowCount,
  required int columnCount,
  required bool fillSingleValue,
  required FdcGridRangeSelectionCellEditablePredicate isCellEditable,
  required FdcGridRangeSelectionCellTextParser parseCellText,
});