GroupChannelPushTriggerOptionGetRequest constructor Null safety

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

Implementation

GroupChannelPushTriggerOptionGetRequest({
  required String channelUrl,
  String? userId,
}) : super(userId: userId) {
  url = 'users/${userId ?? state.userId}/push_preference/$channelUrl';
}