typeOf function

String typeOf(
  1. dynamic element
)

Implementation

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