EntitlementValue.fromJson constructor
Implementation
factory EntitlementValue.fromJson(Map<String, dynamic> json) {
return EntitlementValue(
booleanValue: json['BooleanValue'] as bool?,
doubleValue: json['DoubleValue'] as double?,
integerValue: json['IntegerValue'] as int?,
stringValue: json['StringValue'] as String?,
);
}