blob: 264961081324a2f89496aceef1d375657e70a669 [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.
// ignore_for_file: public_member_api_docs
import 'hash_codes.dart';
abstract class Table {
const Table();
Map<int, dynamic> get $fields;
@override
int get hashCode => deepHash($fields.values);
@override
bool operator ==(dynamic other) {
if (identical(this, other)) {
return true;
}
if (runtimeType != other.runtimeType) {
return false;
}
final Table otherTable = other;
return deepEquals($fields, otherTable.$fields);
}
}
typedef TableFactory<T> = T Function(Map<int, dynamic> argv);