TokenResponse constructor

TokenResponse({
  1. String? refreshToken,
  2. String? accessToken,
  3. int? expiresIn,
  4. bool? isShortLived,
  5. String? merchantId,
})

Implementation

TokenResponse(
    {this.refreshToken,
    this.accessToken,
    this.expiresIn,
    this.isShortLived,
    this.merchantId});