isNumericType method

bool isNumericType(
  1. String baseType
)

Implementation

bool isNumericType(String baseType) =>
    baseType == "int" || baseType == "double";