Query$getLastWidgetOutboundsByTarget$getLastWidgetOutboundsByTarget$content$email.fromJson constructor

Query$getLastWidgetOutboundsByTarget$getLastWidgetOutboundsByTarget$content$email.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$getLastWidgetOutboundsByTarget$getLastWidgetOutboundsByTarget$content$email.fromJson(
    Map<String, dynamic> json) {
  final l$subject = json['subject'];
  final l$preview = json['preview'];
  final l$content = json['content'];
  final l$editor = json['editor'];
  return Query$getLastWidgetOutboundsByTarget$getLastWidgetOutboundsByTarget$content$email(
    subject: (l$subject as String?),
    preview: (l$preview as String?),
    content: (l$content as String?),
    editor: l$editor == null
        ? null
        : fromJson$Enum$OutboundEditorEnum((l$editor as String)),
  );
}