rankAsInt property

int? get rankAsInt

Returns the rank as an integer, or null if not available

Implementation

int? get rankAsInt {
  if (rank == null) return null;
  return int.tryParse(rank!);
}