toFormattedTime method

String toFormattedTime({
  1. String format = 'hh:mm a',
  2. String? locale,
})

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);
}