tryCastToInt method

int? tryCastToInt()

Implementation

int? tryCastToInt() {
  if (this == null) {
    return null;
  }
  return this!.value.tryCastToInt();
}