getInt method

Future<int> getInt(
  1. String key
)

Returns the value of an integer parameter.

Implementation

Future<int> getInt(String key) async {
  return await _channel.$getInt(this, key) as int;
}