copyWith method
Implementation
TextInputOptions copyWith(
{String? label, bool? isRequired, int? maxLength, bool? autoFocus}) =>
TextInputOptions(
label: label ?? this.label,
isRequired: isRequired ?? this.isRequired,
maxLength: maxLength ?? this.maxLength,
autoFocus: autoFocus ?? this.autoFocus,
);