getDouble method

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

Implementation

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