PatchbayRejection constructor

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

Implementation

const PatchbayRejection({
  required this.code,
  this.notice,
  this.details = const <String, Object?>{},
});