WmxSitemapContent.fromJson constructor

WmxSitemapContent.fromJson(
  1. Map json_
)

Implementation

WmxSitemapContent.fromJson(core.Map json_)
    : this(
        indexed: json_.containsKey('indexed')
            ? json_['indexed'] as core.String
            : null,
        submitted: json_.containsKey('submitted')
            ? json_['submitted'] as core.String
            : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );