factory AuthToken.fromJson(Map<String, dynamic> json) { return AuthToken( id: UniqueId.fromUniqueString(json['id']), token: json['token'], ); }