MeshErrorScope constructor

const MeshErrorScope({
  1. Key? key,
  2. required Widget child,
  3. bool remoteReportingEnabled = kReleaseMode,
  4. MeshErrorMessageResolver? messageResolver,
  5. Duration displayDuration = const Duration(seconds: 4),
})

Implementation

const MeshErrorScope({
  super.key,
  required this.child,
  this.remoteReportingEnabled = kReleaseMode,
  this.messageResolver,
  this.displayDuration = const Duration(seconds: 4),
});