StateReason constructor

StateReason({
  1. String? code,
  2. String? message,
  3. String? userDetails,
})

Implementation

StateReason({
  this.code,
  this.message,
  this.userDetails,
});