isRecord abstract method
Checks if this class represents a record type.
Returns:
truefor record types (e.g.,(int, String))falsefor other types
Note: Available in Dart 3.0+ for positional and named records.
Implementation
bool isRecord();
Checks if this class represents a record type.
Returns:
true for record types (e.g., (int, String))false for other typesNote: Available in Dart 3.0+ for positional and named records.
bool isRecord();