floatValue property

double? floatValue

Implementation

double? get floatValue {
  final value = this.value;
  return type == ValueType.float ? value as double : null;
}