removeAt method

Authorization removeAt(
  1. int index
)

Removes an authorization at the specified index.

Implementation

Authorization removeAt(int index) {
  return _authorizations.removeAt(index);
}