ChannelId constructor

ChannelId({
  1. String? targetType,
})

Implementation

factory ChannelId({
  $core.String? targetType,
}) {
  final _result = create();
  if (targetType != null) {
    _result.targetType = targetType;
  }
  return _result;
}