OpenTuiAbiMismatchException constructor

OpenTuiAbiMismatchException({
  1. required int expected,
  2. required int? found,
  3. required String buildInfo,
  4. String? details,
})

Creates an ABI mismatch exception.

Implementation

OpenTuiAbiMismatchException({
  required this.expected,
  required this.found,
  required this.buildInfo,
  this.details,
});