We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I seem unable to get dcdg to represent extensions in my output.
dcdg
part of 'extensions.dart'; extension intX on int { String toTime() { int h, m, s; h = this ~/ 3600; m = ((this - h * 3600)) ~/ 60; s = this - (h * 3600) - (m * 60); String hourLeft = h.toString().length < 2 ? "0" + h.toString() : h.toString(); String minuteLeft = m.toString().length < 2 ? "0" + m.toString() : m.toString(); String secondsLeft = s.toString().length < 2 ? "0" + s.toString() : s.toString(); String result = "$hourLeft:$minuteLeft:$secondsLeft"; return result; } }
The text was updated successfully, but these errors were encountered:
There's no support for extensions at the moment.
Sorry, something went wrong.
No branches or pull requests
I seem unable to get
dcdg
to represent extensions in my output.The text was updated successfully, but these errors were encountered: