CustomException constructor

const CustomException({
  1. int? code,
  2. String? message = "",
})

Implementation

const CustomException({this.code, this.message = ""});