GoneException constructor

const GoneException([
  1. Map<String, dynamic>? data,
  2. String detail = ''
])

Implementation

const GoneException([Map<String, dynamic>? data, String detail = ''])
    : super(HttpStatus.GONE, 'Gone${detail != '' ? ': ' : ''}$detail', data);