EnterpriseCrmEventbusProtoBuganizerNotification.fromJson constructor

EnterpriseCrmEventbusProtoBuganizerNotification.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmEventbusProtoBuganizerNotification.fromJson(core.Map json_)
    : this(
        assigneeEmailAddress: json_.containsKey('assigneeEmailAddress')
            ? json_['assigneeEmailAddress'] as core.String
            : null,
        componentId: json_.containsKey('componentId')
            ? json_['componentId'] as core.String
            : null,
        templateId: json_.containsKey('templateId')
            ? json_['templateId'] as core.String
            : null,
        title:
            json_.containsKey('title') ? json_['title'] as core.String : null,
      );