FhirNotificationConfig.fromJson constructor

FhirNotificationConfig.fromJson(
  1. Map json_
)

Implementation

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