from json
factory Owner.fromJson(Map<String, dynamic> json) => Owner( id: json["id"] == null ? null : json["id"], username: json["username"] == null ? null : json["username"], );