factory GitResult.fromJson(Map<String, Object?> json) => GitResult( ok: json['ok'] == true, output: (json['output'] as String?) ?? '', );