Result constructor

Result({
  1. required List<Checkpoint> checkpoints,
  2. PlatformException? exception,
})

Implementation

Result({
  required this.checkpoints,
  this.exception,
});