matchValueType method Null safety

bool matchValueType(
  1. dynamic expectedType,
  2. dynamic actualValue
)

Matches expected type to a type of a value. The expected type can be specified by a type, type name or TypeCode.

  • expectedType an expected type to match.
  • actualValue a value to match its type to the expected one. Returns true if types are matching and false if they don't.

See matchType See matchValueTypeByName (for matching by types' string names)