ServerException constructor

const ServerException({
  1. required String message,
  2. Map<String, dynamic>? details,
})

Implementation

const ServerException({
  required super.message,
  super.details,
}) : super(code: DatumExceptionCode.serverError);