getList<T> method

List<T>? getList<T>(
  1. String tag
)

Implementation

List<T>? getList<T>(String tag) {
  try {
    return List<T>.from(this[tag]);
  } catch (e) {
    return null;
  }
}