copyWith method
Creates a new instance of WindowsOptions
by copying the current instance
and replacing specified properties with new values.
Implementation
WindowsOptions copyWith({
bool? useBackwardCompatibility,
}) =>
WindowsOptions(
useBackwardCompatibility:
useBackwardCompatibility ?? _useBackwardCompatibility,
);