factory CreateUserResponse.fromJson(Map<String, dynamic> json) { return CreateUserResponse( serverId: json['ServerId'] as String, userName: json['UserName'] as String, ); }