updateContactPointPeriod method

MessageHeaderSource updateContactPointPeriod(
  1. Period period
)

Implementation

MessageHeaderSource updateContactPointPeriod(
  Period period,
) =>
    contact == null
        ? copyWith(contact: ContactPoint(period: period))
        : copyWith(contact: contact!.copyWith(period: period));