String dateToString(DateTime date, {String pattern = "yyyy/MM/dd"}) { final fromFormatter = DateFormat(pattern); return fromFormatter.format(date); }