copyWith method

  1. @override
void copyWith(
  1. dynamic other
)
override

Implementation

@override
void copyWith(dynamic other) {
  super.copyWith(other);
  if (other is FeedChannel) {
    groupChannel = other.groupChannel;
  }
}