Skip to content

Instantly share code, notes, and snippets.

View harishkthedeveloper's full-sized avatar
🎯
Focusing

Harish Kandekar harishkthedeveloper

🎯
Focusing
  • LG Soft India Pvt Ltd
View GitHub Profile
@apgapg
apgapg / date_utils.dart
Last active November 10, 2021 16:03
Get correct ISO DateTime String with offset in Flutter: https://dartpad.dev/84d855e41c0134a34ff8b2cf034ad249
import 'package:intl/intl.dart';
import 'package:meta/meta.dart';
void main() {
print(DateUtils.formatISOTime(DateTime.now()));
print(DateUtils.getCurrentISOTimeString());
}
class DateUtils {