TrnRequestParams constructor

TrnRequestParams({
  1. required String token,
  2. bool isSandbox = false,
})

Implementation

TrnRequestParams({required String token, bool isSandbox = false})
    : this._token = token,
      this._isSandbox = isSandbox;