toFormattedTime method
Converts the date to a formatted time string.
Implementation
String toFormattedTime({String format = 'hh:mm a', String? locale}) {
final df = DateFormat(
format, locale ?? PlayxLocalization.currentLocale.languageCode);
return df.format(this);
}