valueType property
The runtime type of this value.
Implementation
@override
RuntimeType get valueType {
final args = typeArguments;
if (args != null && args.isNotEmpty) {
return AppliedRuntimeType(klass, args);
}
return klass;
}
The runtime type of this value.
@override
RuntimeType get valueType {
final args = typeArguments;
if (args != null && args.isNotEmpty) {
return AppliedRuntimeType(klass, args);
}
return klass;
}