fromMap method

dynamic fromMap(
  1. Map<String, dynamic> json
)
override

Implementation

fromMap(Map<String, dynamic> json) {
  userName = JsonConverters.getJson(json, 'userName');
  firstName = JsonConverters.getJson(json, 'firstName');
  lastName = JsonConverters.getJson(json, 'lastName');
  displayName = JsonConverters.getJson(json, 'displayName');
  email = JsonConverters.getJson(json, 'email');
  password = JsonConverters.getJson(json, 'password');
  autoLogin = JsonConverters.getJson(json, 'autoLogin');
  Continue = JsonConverters.getJson(json, 'continue');
  return this;
}