SheetParser class
Unified parser for all supported sheet file types
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
parseBytes(
Uint8List bytes, SheetType type, {String? sheetName, int? sheetIndex}) → List< List> - Parse bytes into rows based on type
-
parseFile(
File file, {SheetType? sheetType, String? sheetName, int? sheetIndex}) → Future< List< List> > - Parse file into rows based on type
-
parseString(
String content, SheetType type) → List< List> - Parse string content (for text-based formats only)