EntitlementValue.fromJson constructor

EntitlementValue.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}