MapTypeException constructor

MapTypeException(
  1. String key,
  2. Type expectedType,
  3. Type actualType
)

Implementation

MapTypeException(String key, Type expectedType, Type actualType) {
  message = "key '$key' on StreamingMap was expected "
      'to be $expectedType instead of $actualType';

  print('Warning ' + toString());
}