dataLoad method

Future dataLoad(
  1. String key,
  2. String type
)

Implementation

Future<dynamic> dataLoad(String key, String type) async {
  dynamic result = await _dataLoader(key, type);
  if (debug) print("load - value $result");
  return castData(result, type);
}