getLog method
Implementation
Future<LogDetailDto?> getLog (
int? logId
) async {
String path = "/log/$logId";
return LogDetailDto.fromJson(
await get(path, requireAuthorization:true) ?? {}
);
}
Future<LogDetailDto?> getLog (
int? logId
) async {
String path = "/log/$logId";
return LogDetailDto.fromJson(
await get(path, requireAuthorization:true) ?? {}
);
}