isFloatType function

bool isFloatType(
  1. String type
)

Implementation

bool isFloatType(String type) {
  return type == "Float" || type == "Float?";
}