getPlainTypeName function
Implementation
String getPlainTypeName(InterfaceType type) {
return type
.getDisplayString(withNullability: false)
.replaceFirst(RegExp(r'<.+>'), '');
}
String getPlainTypeName(InterfaceType type) {
return type
.getDisplayString(withNullability: false)
.replaceFirst(RegExp(r'<.+>'), '');
}