serialize method

SerializedBcs serialize(
  1. Input value, {
  2. BcsWriterOptions? options,
})

Implementation

SerializedBcs serialize(Input value, {BcsWriterOptions? options}) {
  validate(value);
  return SerializedBcs(this, _serialize(value, options: options));
}