getDoubleValue method

double? getDoubleValue()

Implementation

double? getDoubleValue() {
  if (type == BatchUserAttributeType.double) {
    return value;
  }
  return null;
}