toStrN static method
Converts to nullable String
Implementation
static String? toStrN(dynamic d) {
return d != null ? d.toString() : null;
}
Converts to nullable String
static String? toStrN(dynamic d) {
return d != null ? d.toString() : null;
}