Home > Net >  Format Duration to show just Minutes, Seconds and Milliseconds? - Flutter/Dart
Format Duration to show just Minutes, Seconds and Milliseconds? - Flutter/Dart

Time:07-16

I want to formate video length from duration to standard text format

Duration(hours: 1, minutes: 12, seconds: 55);

Result i Want 1:12:55

CodePudding user response:

You can use enter image description here

  • Related