asString static method
Implementation
static String asString(dynamic value) {
var type = TypeInfo.fromValue(value);
return _mappers[type.type]?.stringify(value) ?? value.toString();
}
static String asString(dynamic value) {
var type = TypeInfo.fromValue(value);
return _mappers[type.type]?.stringify(value) ?? value.toString();
}