pop<T> static method

Future<T?> pop<T>({
  1. bool animated = true,
})

Implementation

static Future<T?> pop<T>({bool animated = true}) {
  return channel.invokeMethod('navigator.pop', animated);
}