copyWith method

CanSendMessageToUser copyWith({
  1. int? userId,
  2. bool? onlyLocal,
})

Implementation

CanSendMessageToUser copyWith({int? userId, bool? onlyLocal}) =>
    CanSendMessageToUser(
      userId: userId ?? this.userId,
      onlyLocal: onlyLocal ?? this.onlyLocal,
    );