isDataTypeSupported static method

bool isDataTypeSupported(
  1. dynamic dataTypeExample
)

Implementation

static bool isDataTypeSupported(dynamic dataTypeExample)
{
  // Leads to compile error or exception if data type is not supported
  TypeMapping().getMutator(dataTypeExample);
  return true;
}