InitResult constructor

const InitResult({
  1. required bool complete,
  2. dynamic error,
  3. dynamic stackTrace,
  4. bool showsError = true,
  5. String? errorMessage,
})

Constructs an instance of InitResult.

Implementation

const InitResult({
  required this.complete,
  this.error,
  this.stackTrace,
  this.showsError = true,
  this.errorMessage,
});