isDouble property

bool get isDouble

Implementation

bool get isDouble {
  bool result = false;
  if (this != null) {
    if (this is String) {
      result = StringExtn(toString()).isNum;
    } else if (this is num) {
      result = true;
    } else {
      result = false;
    }
  }
  return result;
}