isLocal property
bool
get
isLocal
True if this request would rather return empty data than go off-device.
Implementation
bool get isLocal => switch (requestType) {
RequestType.local => true,
RequestType.allLocal => true,
RequestType.refresh => false,
RequestType.global => false,
};