FromSheetFunction<T> typedef

FromSheetFunction<T> = List<T> Function(List<List> rows, {bool hasHeader, int? startRow})

Function type for generated fromSheet methods

Implementation

typedef FromSheetFunction<T> =
    List<T> Function(List<List<dynamic>> rows, {bool hasHeader, int? startRow});