blob: b376e0daaca0e666e4dece710bac193d3f11d733 [file] [log] [blame]
/// A placeholder class that represents an entity or model.
class SampleItem {
const SampleItem(this.id);
final int id;
}