ConditionValue.fromJson constructor

ConditionValue.fromJson(
  1. Map json_
)

Implementation

ConditionValue.fromJson(core.Map json_)
    : this(
        relativeDate: json_.containsKey('relativeDate')
            ? json_['relativeDate'] as core.String
            : null,
        userEnteredValue: json_.containsKey('userEnteredValue')
            ? json_['userEnteredValue'] as core.String
            : null,
      );