blob: 2217b7b38c3172b7574e9cb4fd7aee02c7a11d52 [file] [edit]
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
sealed class Data {
const Data();
}
final class AssetData extends Data {
final String key;
const AssetData(this.key);
}