copyWith method

ModuleCorrectionEnabled copyWith({
  1. Object? moduleCorrectionEnabled,
})

Implementation

ModuleCorrectionEnabled copyWith({Object? moduleCorrectionEnabled}) {
  return ModuleCorrectionEnabled(
      moduleCorrectionEnabled:
          moduleCorrectionEnabled ?? this.moduleCorrectionEnabled);
}