ApplyResult constructor

ApplyResult({
  1. required bool success,
  2. required List<String> changes,
  3. String? error,
  4. bool backupCreated = false,
})

Implementation

ApplyResult({
  required this.success,
  required this.changes, this.error,
  this.backupCreated = false,
});