FinishOAuthResponse.fromJson constructor

FinishOAuthResponse.fromJson(
  1. Map json_
)

Implementation

FinishOAuthResponse.fromJson(core.Map json_)
  : this(
      exchangeError: json_.containsKey('exchangeError')
          ? ExchangeError.fromJson(
              json_['exchangeError'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );