resolveChannel method

FutureOr<PrivateChannel?> resolveChannel({
  1. bool force = false,
})

Implementation

FutureOr<PrivateChannel?> resolveChannel({bool force = false}) {
  if (channelId == null) {
    return null;
  }

  return _datastore.channel.get<PrivateChannel>(channelId!.value, force);
}