UserProperties.fromJson constructor

UserProperties.fromJson(
  1. Map json_
)

Implementation

UserProperties.fromJson(core.Map json_)
  : this(
      additionalUserProperties:
          (json_['additionalUserProperties'] as core.List?)
              ?.map(
                (value) => UserProperty.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      customerType: json_['customerType'] as core.String?,
      customerValueBucket: json_['customerValueBucket'] as core.String?,
    );