summary property

String? get summary

Implementation

String? get summary {
  if (bodyType == MessageType.COMBINE) {
    return (body as CombineMessageBody).summary;
  }
  return null;
}