forBytes static method

XdrSCVal forBytes(
  1. Uint8List value
)

Implementation

static XdrSCVal forBytes(Uint8List value) {
  XdrSCVal val = XdrSCVal(XdrSCValType.SCV_BYTES);
  val.bytes = XdrDataValue(value);
  return val;
}