PatchOptions.fromArgResults constructor

PatchOptions.fromArgResults(
  1. ArgResults results
)

Implementation

factory PatchOptions.fromArgResults(ArgResults results) {
  return PatchOptions(
    globalPatchOptions: GlobalPatchOptions.fromArgResults(results),
    force: results.flag('force'),
  );
}