addAuthScopesWithExtendedParams static method

void addAuthScopesWithExtendedParams(
  1. int requestCode,
  2. AccountAuthExtendedParams extendedParams
)

Requests permissions specified by extendedParams from an ID.

Implementation

static void addAuthScopesWithExtendedParams(
  int requestCode,
  AccountAuthExtendedParams extendedParams,
) {
  _c.invokeMethod(
    'addAuthScopesExt',
    <String, dynamic>{
      'reqCode': requestCode,
      'ext': _getExtendedParamsMap(extendedParams),
    },
  );
}