RefreshAccessTokenRequest.fromJson constructor

RefreshAccessTokenRequest.fromJson(
  1. Map json_
)

Implementation

RefreshAccessTokenRequest.fromJson(core.Map json_)
    : this(
        refreshToken: json_['refreshToken'] as core.String?,
      );