Caijinglong hace 5 años
padre
commit
4355c1a7c3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      lib/src/delegate/badge_delegate.dart

+ 1
- 1
lib/src/delegate/badge_delegate.dart Ver fichero

@@ -52,7 +52,7 @@ class DurationBadgeDelegate extends BadgeDelegate {
52 52
     if (type == AssetType.video) {
53 53
       var s = duration.inSeconds % 60;
54 54
       var m = duration.inMinutes % 60;
55
-      var h = duration.inHours ;
55
+      var h = duration.inHours;
56 56
 
57 57
       String text =
58 58
           "$h:${m.toString().padLeft(2, '0')}:${s.toString().padLeft(2, '0')}";