copyWith method

AssociatedCount$Response copyWith({
  1. int? associatedCount,
})

Implementation

AssociatedCount$Response copyWith({int? associatedCount}) {
  return AssociatedCount$Response(
      associatedCount: associatedCount ?? this.associatedCount);
}