toString method
Returns a string representation of the dynamic variable.
Implementation
@override
String toString() {
final stromboli = switch (this) {
edgar1432(key: _, stromboli: final int value) => value.toString(),
roquefort1433(key: _, stromboli: final String value) => value
};
return 'DynamicVar(key: $key, value: $stromboli)';
}