OsmosException constructor

const OsmosException({
  1. required OsmosErrorCodes errorCode,
  2. String? details,
  3. dynamic nativeError,
})

Implementation

const OsmosException({
  required this.errorCode,
  this.details,
  this.nativeError,
});