DirectMyFile / console.dart

Console Library
Other
109 stars 23 forks source link

Added Timer.running property #16

Closed Rodsevich closed 6 months ago

Rodsevich commented 7 years ago

I had to use this and end up using an auxiliary bool variable, not so fancy :/

Rodsevich commented 7 years ago

You are right, excellent idea! Fixed mess

Rodsevich commented 7 years ago

Implemented suggestion You were right once again. Thanks!

Pacane commented 7 years ago

@Rodsevich After sleeping on this, I knew there was an alterate way to do this.

bool get isRunning => _watch?.isRunning ?? false;

Rodsevich commented 7 years ago

Would you believe I ended up on same? I guess you like code golfing a lot like me hugh? :rofl: