$NegativeKeyword.fromJson constructor

$NegativeKeyword.fromJson(
  1. Map json_
)

Implementation

$NegativeKeyword.fromJson(core.Map json_)
    : this(
        keywordValue: json_.containsKey('keywordValue')
            ? json_['keywordValue'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );