packSerializedPayload static method

Uint8List? packSerializedPayload(
  1. String? serializerName, {
  2. Uint8List? argumentsBytes,
  3. Uint8List? argumentsKeywordsBytes,
  4. List? arguments,
  5. Map<String, dynamic>? argumentsKeywords,
})

Implementation

static Uint8List? packSerializedPayload(
  String? serializerName, {
  Uint8List? argumentsBytes,
  Uint8List? argumentsKeywordsBytes,
  List<dynamic>? arguments,
  Map<String, dynamic>? argumentsKeywords,
}) {
  final serializer = _serializerForName(serializerName);
  if (serializer == null) {
    return null;
  }
  return serializer.serializePPTFragments(
    argumentsBytes: argumentsBytes,
    argumentsKeywordsBytes: argumentsKeywordsBytes,
    arguments: arguments,
    argumentsKeywords: argumentsKeywords,
  );
}