WpUser.fromWPUserLoginResponse constructor

WpUser.fromWPUserLoginResponse(
  1. WPUserLoginResponse wpUserLoginResponse
)

Creates a WpUser from a WPUserLoginResponse

Implementation

WpUser.fromWPUserLoginResponse(WPUserLoginResponse wpUserLoginResponse) {
  id = wpUserLoginResponse.data?.userId;
  token = wpUserLoginResponse.data?.userToken;
  email = wpUserLoginResponse.data?.email;
  username = wpUserLoginResponse.data?.username;
  firstName = wpUserLoginResponse.data?.firstName;
  lastName = wpUserLoginResponse.data?.lastName;
  avatar = wpUserLoginResponse.data?.avatar;
  createdAt = wpUserLoginResponse.data?.createdAt;
}