copyWith property

  1. @JsonKey(includeFromJson: false, includeToJson: false)
$StateCopyWith<State> get copyWith
inherited

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

Implementation

@JsonKey(includeFromJson: false, includeToJson: false)
@pragma('vm:prefer-inline')
$StateCopyWith<State> get copyWith =>
    _$StateCopyWithImpl<State>(this as State, _$identity);