cst_encode_opt_String method

  1. @protected
Pointer<wire_cst_list_prim_u_8_strict> cst_encode_opt_String(
  1. String? raw
)

Implementation

@protected
ffi.Pointer<wire_cst_list_prim_u_8_strict> cst_encode_opt_String(
    String? raw) {
  // Codec=Cst (C-struct based), see doc to use other codecs
  return raw == null ? ffi.nullptr : cst_encode_String(raw);
}