TableBranch constructor

const TableBranch({
  1. required String name,
  2. required String? parentBranch,
  3. required int? parentVersion,
  4. required DateTime? createdAt,
  5. required int? manifestSize,
})

Implementation

const TableBranch({
  required this.name,
  required this.parentBranch,
  required this.parentVersion,
  required this.createdAt,
  required this.manifestSize,
});