getInts method

  1. @nonVirtual
Future<List<int>?> getInts(
  1. ConfigurationKey key
)

Implementation

@nonVirtual
Future<List<int>?> getInts(ConfigurationKey key) async {
  var values = await getStrings(key);
  if (values == null) return null;
  return values.map((e) => int.parse(e)).toList();
}