init method

  1. @override
Future<Page<T, C>?> init(
  1. K? key,
  2. int count
)
override

Initializes this PageProvider, loading initial Page, if any.

Implementation

@override
Future<Page<T, C>?> init(K? key, int count) async {
  return null;
}