GoneException constructor

GoneException({
  1. String? type,
  2. String? message,
})

Implementation

GoneException({String? type, String? message})
    : super(type: type, code: 'GoneException', message: message);