FhirNotificationConfig.fromJson constructor

FhirNotificationConfig.fromJson(
  1. Map json_
)

Implementation

FhirNotificationConfig.fromJson(core.Map json_)
    : this(
        pubsubTopic: json_.containsKey('pubsubTopic')
            ? json_['pubsubTopic'] as core.String
            : null,
        sendFullResource: json_.containsKey('sendFullResource')
            ? json_['sendFullResource'] as core.bool
            : null,
        sendPreviousResourceOnDelete:
            json_.containsKey('sendPreviousResourceOnDelete')
                ? json_['sendPreviousResourceOnDelete'] as core.bool
                : null,
      );