testDateLocalizeUseCaseProvider top-level property

  1. @visibleForTesting
Provider<DateLocalizeUseCase> testDateLocalizeUseCaseProvider
final

Provides a date localize use case that formats the dates in UTC time.

Useful for testing to ensure tests work regardless of timezone.

Implementation

@visibleForTesting
final testDateLocalizeUseCaseProvider = Provider<DateLocalizeUseCase>(
  (ref) => const UtcDateFormatLocalizeUseCase(),
);