PotDescription constructor

const PotDescription({
  1. required String identity,
  2. required bool? isPending,
  3. required bool isDisposed,
  4. required bool hasObject,
  5. required String object,
  6. required int? scope,
})

Creates a PotDescription that describes the details of a Pot.

Implementation

const PotDescription({
  required this.identity,
  required this.isPending,
  required this.isDisposed,
  required this.hasObject,
  required this.object,
  required this.scope,
});