UpdateUserProfileResponse.fromJson constructor

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

Implementation

factory UpdateUserProfileResponse.fromJson(Map<String, dynamic> json) {
  return UpdateUserProfileResponse(
    userProfileArn: json['UserProfileArn'] as String?,
  );
}