MeshConnectionStateEvent constructor

const MeshConnectionStateEvent({
  1. required MeshConnectionState state,
  2. String? error,
  3. String? details,
})

Implementation

const MeshConnectionStateEvent({
  required this.state,
  this.error,
  this.details,
});