fetchData static method
dynamic
fetchData(})
Implementation
static fetchData(
String name, {
bool nextPage = false,
String q = '',
String f = '',
String o = '',
int p = 1,
int r = 20,
int s = 0,
bool isForced = false,
}) =>
getList(name) != null
? getList(name).fetchData(
nextPage: nextPage,
q: q,
f: f,
o: o,
p: p,
r: r,
s: s,
isForced: isForced,
)
: null;