remove static method

Future<bool> remove({
  1. required String url,
  2. int index = 0,
  3. bool animated = true,
})

Remove the page with url in the navigation stack.

Implementation

static Future<bool> remove({required String url, int index = 0, bool animated = true}) =>
    ThrioNavigatorImplement.shared().remove(url: url, index: index, animated: animated);