toIntOrNull method

int? toIntOrNull()

Implementation

int? toIntOrNull() => this == null ? null : int.tryParse(this!);