getAsNullableLong method

int? getAsNullableLong()

Converts object value into a long or returns null if conversion is not possible.

Returns long value or null if conversion is not supported.

See LongConverter.toNullableLong

Implementation

int? getAsNullableLong() {
  return LongConverter.toNullableLong(_value);
}