typeOf static method

String typeOf(
  1. dynamic element
)

Implementation

static String typeOf(element) {
  return element.runtimeType.toString();
}