setCLsChannelSessionCredential method

Future<void> setCLsChannelSessionCredential(
  1. String arg_topicId,
  2. String arg_endpoint
)

Implementation

Future<void> setCLsChannelSessionCredential(String arg_topicId, String arg_endpoint) async {
  final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
      'dev.flutter.pigeon.CosApi.setCLsChannelSessionCredential', codec,
      binaryMessenger: _binaryMessenger);
  final List<Object?>? replyList =
      await channel.send(<Object?>[arg_topicId, arg_endpoint]) as List<Object?>?;
  if (replyList == null) {
    throw PlatformException(
      code: 'channel-error',
      message: 'Unable to establish connection on channel.',
    );
  } else if (replyList.length > 1) {
    throw PlatformException(
      code: replyList[0]! as String,
      message: replyList[1] as String?,
      details: replyList[2],
    );
  } else {
    return;
  }
}