GigyaError constructor

const GigyaError({
  1. int? apiVersion,
  2. String? callId,
  3. Map<String, Object?> details = const <String, Object?>{},
  4. int? errorCode,
  5. String? errorMessage,
})

The default constructor.

Implementation

const GigyaError({
  this.apiVersion,
  this.callId,
  this.details = const <String, Object?>{},
  this.errorCode,
  this.errorMessage,
});