copyWith method

GetCreatedPublicChats copyWith({
  1. PublicChatType? type,
})

Implementation

GetCreatedPublicChats copyWith({
  PublicChatType? type,
}) =>
    GetCreatedPublicChats(
      type: type ?? this.type,
    );