copy method

SmartDateOptionsHandler copy({
  1. SmartDateService? smartDateService,
  2. SmartDateOptionsConfig? config,
  3. String? placeholder,
})

Implementation

SmartDateOptionsHandler copy({
  SmartDateService? smartDateService,
  SmartDateOptionsConfig? config,
  String? placeholder,
}) {
  return SmartDateOptionsHandler.of(
    smartDateService: smartDateService ?? this._smartDateService,
    config: config ?? this.config,
    placeholder: placeholder ?? this.placeholder,
  );
}