key_up method

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

Implementation

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