fetchInitWithLoading method

  1. @protected
Future<void> fetchInitWithLoading(
  1. Future future()
)

위젯이 마운트 되면 future에 로딩처리 로직을 붙여 호출한다.

Implementation

@protected
Future<void> fetchInitWithLoading(Future Function() future) async {
  fetchInit(() => fetch(future));
}