GroupChannelInvitationDeclineRequest constructor Null safety

GroupChannelInvitationDeclineRequest(
  1. {required String channelUrl,
  2. String? userId}
)

Implementation

GroupChannelInvitationDeclineRequest({
  required String channelUrl,
  String? userId,
}) : super(userId: userId) {
  url = 'group_channels/$channelUrl/decline';
}