copyWith method
Implementation
GetBlockedMessageSenders copyWith({
BlockList? blockList,
int? offset,
int? limit,
}) => GetBlockedMessageSenders(
blockList: blockList ?? this.blockList,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);