GetContactAttributesResponse.fromJson constructor

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

Implementation

factory GetContactAttributesResponse.fromJson(Map<String, dynamic> json) {
  return GetContactAttributesResponse(
    attributes: (json['Attributes'] as Map<String, dynamic>?)
        ?.map((k, e) => MapEntry(k, e as String)),
  );
}