From 42434761e827e4c50b73fc1e6a45bef72e846bb4 Mon Sep 17 00:00:00 2001 From: Lukas Lihotzki Date: Thu, 23 Sep 2021 13:44:48 +0200 Subject: [PATCH] chore: dart analyze fix --- lib/src/utils/matrix_file.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/utils/matrix_file.dart b/lib/src/utils/matrix_file.dart index 3bc5c1c5..32d86f7a 100644 --- a/lib/src/utils/matrix_file.dart +++ b/lib/src/utils/matrix_file.dart @@ -40,7 +40,7 @@ class MatrixFile { : mimeType = mimeType ?? lookupMimeType(name, headerBytes: bytes) ?? 'application/octet-stream', - name = name.split('/').last.toLowerCase() {} + name = name.split('/').last.toLowerCase(); int get size => bytes.length;