List<AssetItem> get assets { final List<AssetItem> data = list.values.toList(); data.sort((a, b) => a.name.compareTo(b.name)); return data; }