AnalyticsResponse constructor

AnalyticsResponse({
  1. String? transactionId,
  2. String? responseCode,
  3. String? responseMessage,
  4. String? timestamp,
  5. dynamic response,
})

Implementation

AnalyticsResponse({
    this.transactionId,
    this.responseCode,
    this.responseMessage,
    this.timestamp,
    this.response,
});