toString method
Get debug string representation
Returns a String
representing the debug information of the struct.
Implementation
@override
String toString() {
final fields =
debugFields.entries.map((e) => '${e.key}: ${e.value}').join(', ');
return '$runtimeType(size: $structSize bytes, $fields)';
}