ServerException constructor

const ServerException([
  1. String? m,
  2. int? c
])

Implementation

const ServerException([String? m, int? c])
    : super(
        m ?? 'Internal server error. Please try later.',
        statusCode: c ?? 500,
      );