CreateUserProfileResponse.fromJson constructor

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

Implementation

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