UICustomizationType.fromJson constructor

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

Implementation

factory UICustomizationType.fromJson(Map<String, dynamic> json) {
  return UICustomizationType(
    css: json['CSS'] as String?,
    cSSVersion: json['CSSVersion'] as String?,
    clientId: json['ClientId'] as String?,
    creationDate: timeStampFromJson(json['CreationDate']),
    imageUrl: json['ImageUrl'] as String?,
    lastModifiedDate: timeStampFromJson(json['LastModifiedDate']),
    userPoolId: json['UserPoolId'] as String?,
  );
}