intParse method

int? intParse()

Implementation

int? intParse() {
  if (this == null) {
    return null;
  }
  return int.tryParse(this!);
}