withdraw method

void withdraw({
  1. bool push = false,
})

Changes router location to the Routes.withdraw page.

Implementation

void withdraw({bool push = false}) =>
    (push ? this.push : go)(Routes.withdraw);