copyWith method

MonologRow copyWith({
  1. String? identifier,
  2. String? chatId,
})

Implementation

MonologRow copyWith({String? identifier, String? chatId}) => MonologRow(
  identifier: identifier ?? this.identifier,
  chatId: chatId ?? this.chatId,
);