ConditionValue.fromJson constructor
ConditionValue.fromJson(
- 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,
);