getInt method

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

Implementation

@nonVirtual
Future<int?> getInt(ConfigurationKey key) async {
  var value = await resolve(key);
  if (value == null) return null;
  return int.parse(value);
}