intValue property

Int64? intValue

Implementation

Int64? get intValue {
  final value = this.value;
  return type == ValueType.int ? value as Int64 : null;
}