textDashMonth method
Implementation
String textDashMonth() {
try {
final DateFormat formatter = DateFormat('yyyy-MM');
final String formatted = formatter.format(this);
return formatted;
} catch (e) {
print(e.toString());
return '';
}
}