getInt method
- String key, {
- int def = 0,
- OnGetValueErrorCallback? onError,
Get int Type
Implementation
int getInt(String key, {int def = 0, OnGetValueErrorCallback? onError}) {
return getValue<int>(key, def: def, onError: onError);
}
int getInt(String key, {int def = 0, OnGetValueErrorCallback? onError}) {
return getValue<int>(key, def: def, onError: onError);
}