copyWith method

State$Response copyWith({
  1. String? state,
})

Implementation

State$Response copyWith({String? state}) {
  return State$Response(state: state ?? this.state);
}