FluDTAuthorizeResp constructor

FluDTAuthorizeResp({
  1. required String errorCode,
  2. required String errorMessage,
  3. required String accessCode,
  4. String? state,
})

Implementation

FluDTAuthorizeResp({
  required this.errorCode,
  required this.errorMessage,
  required this.accessCode,
  this.state,
});