AuthUser.fromJson constructor

AuthUser.fromJson(
  1. Map map
)

Implementation

factory AuthUser.fromJson(Map map) => AuthUser(
      id: map['id'],
      name: map['name'],
      email: map['email'],
      photoUrl: map['photoUrl'],
    );