goto method

Future<Online> goto(
  1. AbstractUrl url, {
  2. bool show = true,
})

Implementation

Future<Online> goto(
  AbstractUrl url, {
  bool show = true,
}) async {
  var Online = await this;
  return Online.goto(
    url,
    show: show,
  );
}