factory Authorization.fromJson(Map<String, dynamic> json) { return Authorization( roles: List<String>.from(json['roles'] ?? []), ); }