copyWith method

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

Implementation

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