fetch abstract method

Future<void> fetch([
  1. bool listen = true
])

Provides the best data acquisition method to implement during screen build.

Data loading does not occur in duplicate when a screen is built multiple times.

Basically, it listens for data. If listen is set to false, load only.

Implementation

Future<void> fetch([bool listen = true]);