makeGeoChannel static method
Implementation
static GeoChannel makeGeoChannel(
{required String channel,
required Map<String, dynamic> metadata,
ChaCha20Key? chaCha20Key}) {
GeoChannel geoChannel = GeoChannel(channel, metadata: jsonEncode(metadata));
geoChannel.connect(PubSubSupervisor.supervisor);
return geoChannel;
}