ConditionValue.fromJson constructor

ConditionValue.fromJson(
  1. Map json_
)

Implementation

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