ServerErrorException constructor

ServerErrorException({
  1. bool silent = false,
  2. List<String> messages = const [],
})

Implementation

ServerErrorException({
  bool silent = false,
  List<String> messages = const [],
}) : super(
        silent: silent,
        messages: messages,
      );