getCommitMsg function
create an new commit message
Implementation
String getCommitMsg() {
final now = DateTime.now();
final epoch = now.millisecondsSinceEpoch;
final epochString = epoch.toString();
return 'commit by Comet $epochString';
}
create an new commit message
String getCommitMsg() {
final now = DateTime.now();
final epoch = now.millisecondsSinceEpoch;
final epochString = epoch.toString();
return 'commit by Comet $epochString';
}