SecurityException constructor

const SecurityException({
  1. required String message,
  2. String? code,
  3. Object? originalError,
})

Implementation

const SecurityException({
  required this.message,
  this.code,
  this.originalError,
});