mapValueType property

TypeReflection? mapValueType

The TypeReflection of the Map value type.

Implementation

TypeReflection? get mapValueType {
  if (isMapType) {
    var args = arguments;
    return args.length > 1 ? args[1] : null;
  } else {
    return null;
  }
}