copyWith property

  1. @JsonKey.new(includeFromJson: false, includeToJson: false)
$FormFieldCopyWith<T, FormField<T>> get copyWith
inherited

Create a copy of FormField with the given fields replaced by the non-null parameter values.

Implementation

@JsonKey(includeFromJson: false, includeToJson: false)
@pragma('vm:prefer-inline')
$FormFieldCopyWith<T, FormField<T>> get copyWith =>
    _$FormFieldCopyWithImpl<T, FormField<T>>(
        this as FormField<T>, _$identity);