factory GitStatusEntry.fromJson(Map<String, Object?> json) => GitStatusEntry( path: json['path'] as String, status: json['status'] as String, staged: json['staged'] == true, );