init static method

  1. @Deprecated('Use the function, initAsync, instead of init')
Future<bool?> init({
  1. String? csv,
  2. Map<String, Map<String, String>>? map,
})

Implementation

@Deprecated('Use the function, initAsync, instead of init')
static Future<bool?> init({
  String? csv,
  Map<String, Map<String, String>>? map,
}) =>
    I10n.initAsync(csv: csv, map: map);