copyWith method

OnButtonPress$Response copyWith({
  1. Object? onButtonPress,
})

Implementation

OnButtonPress$Response copyWith({Object? onButtonPress}) {
  return OnButtonPress$Response(
      onButtonPress: onButtonPress ?? this.onButtonPress);
}