UserUpdateStatusResponse constructor

UserUpdateStatusResponse({
  1. required String type,
  2. required String resource,
  3. required String action,
  4. String? uuid,
  5. UserUpdateStatusPayload? payload,
  6. required List errors,
})

Implementation

UserUpdateStatusResponse({
  required this.type,
  required this.resource,
  required this.action,
  this.uuid,
  this.payload,
  required this.errors,
});