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