copyWith method

SkipTurnToolConfig copyWith({
  1. String? systemToolType,
})

Implementation

SkipTurnToolConfig copyWith({String? systemToolType}) {
  return SkipTurnToolConfig(
      systemToolType: systemToolType ?? this.systemToolType);
}