StoreAndForward constructor

Implementation

factory StoreAndForward({
  StoreAndForward_RequestResponse? rr,
  StoreAndForward_Statistics? stats,
  StoreAndForward_History? history,
  StoreAndForward_Heartbeat? heartbeat,
  $core.List<$core.int>? text,
}) {
  final result = create();
  if (rr != null) result.rr = rr;
  if (stats != null) result.stats = stats;
  if (history != null) result.history = history;
  if (heartbeat != null) result.heartbeat = heartbeat;
  if (text != null) result.text = text;
  return result;
}