getTitle static method

String getTitle(
  1. String tableName,
  2. int? id, {
  3. String defaultValue = '',
})

Implementation

static String getTitle(
  String tableName,
  int? id, {
  String defaultValue = '',
}) {
  if (id == null) return defaultValue;
  return getDataPicker(
    getValueDataPicker(tableName),
    id,
    defaultValue: defaultValue,
  );
}