press method

Future<Online> press(
  1. Key key, {
  2. bool show = true,
})

Implementation

Future<Online> press(
  Key key, {
  bool show = true,
}) async {
  var Online = await this;
  return Online.press(
    key,
    show: show,
  );
}