blob: 012da9e018a33c18ca617450e75c609bd46bbfe0 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:meta/meta.dart';
/// Holds strucutred data decoded from the Entity's data.
class ColorEntityData {
/// A 32 bit value representing the color.
final int value;
/// Create a new instance of [ColorEntityData].
const ColorEntityData({
@required this.value,
})
: assert(value != null);
}