copyWith method

GetBlockedMessageSenders copyWith({
  1. BlockList? blockList,
  2. int? offset,
  3. int? limit,
})

Implementation

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