IncompatibleVersionException constructor

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

Implementation

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