ReportDelivery.fromJson constructor

ReportDelivery.fromJson(
  1. Map json_
)

Implementation

ReportDelivery.fromJson(core.Map json_)
    : this(
        emailOwner: json_['emailOwner'] as core.bool?,
        emailOwnerDeliveryType:
            json_['emailOwnerDeliveryType'] as core.String?,
        message: json_['message'] as core.String?,
        recipients: (json_['recipients'] as core.List?)
            ?.map((value) => Recipient.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );