getInt method

Future<int?> getInt(
  1. String key
)

Implementation

Future<int?> getInt(String key) {
  return kMethodChannel.invokeMethod<int>(
    'android.os.Bundle::getInt',
    {'__this__': this, 'key': key},
  );
}