ServerFailure constructor

const ServerFailure({
  1. String? message,
  2. int? code,
})

Implementation

const ServerFailure({
  super.message,
  super.code,
});