TargetWindow.fromJson constructor

TargetWindow.fromJson(
  1. Map json_
)

Implementation

TargetWindow.fromJson(core.Map json_)
    : this(
        customHtml: json_.containsKey('customHtml')
            ? json_['customHtml'] as core.String
            : null,
        targetWindowOption: json_.containsKey('targetWindowOption')
            ? json_['targetWindowOption'] as core.String
            : null,
      );