toStrN static method

String? toStrN(
  1. dynamic d
)

Converts to nullable String

Implementation

static String? toStrN(dynamic d) {
  return d != null ? d.toString() : null;
}