getPredictionCustom method

Future<List<Object?>?> getPredictionCustom(
  1. int index,
  2. List<double> input,
  3. List<int> shape,
  4. String dtype,
)

predicts abstract number input

Implementation

Future<List<Object?>?> getPredictionCustom(int index, List<double> input, List<int> shape, String dtype) async {
  final String pigeonVar_channelName = 'dev.flutter.pigeon.pytorch_lite.ModelApi.getPredictionCustom$pigeonVar_messageChannelSuffix';
  final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
    pigeonVar_channelName,
    pigeonChannelCodec,
    binaryMessenger: pigeonVar_binaryMessenger,
  );
  final List<Object?>? pigeonVar_replyList =
      await pigeonVar_channel.send(<Object?>[index, input, shape, dtype]) as List<Object?>?;
  if (pigeonVar_replyList == null) {
    throw _createConnectionError(pigeonVar_channelName);
  } else if (pigeonVar_replyList.length > 1) {
    throw PlatformException(
      code: pigeonVar_replyList[0]! as String,
      message: pigeonVar_replyList[1] as String?,
      details: pigeonVar_replyList[2],
    );
  } else {
    return (pigeonVar_replyList[0] as List<Object?>?);
  }
}