ServerException constructor

ServerException({
  1. required String name,
  2. required String reason,
  3. required String message,
  4. required dynamic info,
})

Implementation

ServerException({
  required this.name,
  required this.reason,
  required this.message,
  required this.info,
}) : super(null);