getValueDataRange static method

Map<int, RangeValue> getValueDataRange(
  1. String tableName
)

Implementation

static Map<int, RangeValue> getValueDataRange(String tableName) {
  if (Common.mapRange.containsKey(tableName)) {
    return Common.mapRange[tableName] ?? {};
  } else if (kDebugMode) {
    SQLService.execute(
      'sp_AddPickerRange',
      params: {'@tableName': tableName},
    );
  }
  return {};
}