create static method

InstantMessage create(
  1. Envelope head,
  2. Content body
)

Implementation

static InstantMessage create(Envelope head, Content body) {
  var helper = sharedMessageExtensions.instantHelper;
  return helper!.createInstantMessage(head, body);
}