PatchbayRejectionWire constructor

const PatchbayRejectionWire({
  1. required String code,
  2. required String? notice,
  3. required Map<String, Object?> details,
})

Creates a fully validated wire value.

Implementation

const PatchbayRejectionWire({
  required this.code,
  required this.notice,
  required this.details,
});