toIntFormatted method

int toIntFormatted(
  1. String format,
  2. String? locale
)

Parses a formatted integer using NumberFormat.

See toNumFormatted for parameter details.

Implementation

int toIntFormatted(String format, String? locale) =>
    toNumFormatted(format, locale).toInt();