SdkUserModel constructor

SdkUserModel({
  1. String? accessToken,
  2. String? orderAccessToken,
  3. String? tokenType,
  4. String? refreshToken,
  5. num? expiresIn,
  6. String? scope,
  7. String? id,
  8. String? orderUserId,
  9. String? accountId,
  10. List<Profile>? profiles,
  11. String? version,
  12. List<String>? roles,
  13. String? fullName,
  14. String? phoneNumber,
  15. String? userProfileId,
  16. String? clientId,
  17. String? clientSecret,
})

Implementation

SdkUserModel({
  this.accessToken,
  this.orderAccessToken,
  this.tokenType,
  this.refreshToken,
  this.expiresIn,
  this.scope,
  this.id,
  this.orderUserId,
  this.accountId,
  this.profiles,
  this.version,
  this.roles,
  this.fullName,
  this.phoneNumber,
  this.userProfileId,
  this.clientId,
  this.clientSecret,
});