send method

void send()

Implementation

void send() {
  final p = malloc<PERIPHERAL_CALL_SMS_CONTENT>();
  p.ref.type = type;
  p.ref.lengthId = lengthId;
  p.ref.lengthContent = lengthContent;
  callid.toCArray(p.ref.callid);
  content.toCArray(p.ref.content);
  malloc.free(p);
}