Skip to content

Commit

Permalink
feat(provider): change provider contract
Browse files Browse the repository at this point in the history
  • Loading branch information
LeadcodeDev committed Aug 15, 2024
1 parent ff7f5ef commit ed76c1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/domains/providers/provider.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'dart:async';

abstract interface class ProviderContract {
FutureOr<void> ready();
FutureOr<void> dispose();
abstract class ProviderContract {
FutureOr<void> ready() {}
FutureOr<void> dispose() {}
}

0 comments on commit ed76c1c

Please sign in to comment.