KeyValueTargetingExpression.fromJson constructor

KeyValueTargetingExpression.fromJson(
  1. Map json_
)

Implementation

KeyValueTargetingExpression.fromJson(core.Map json_)
    : this(
        expression: json_.containsKey('expression')
            ? json_['expression'] as core.String
            : null,
      );