ContractState constructor

const ContractState({
  1. required String view,
  2. required bool loading,
  3. required String error,
  4. required bool empty,
})

Implementation

const ContractState({
  required this.view,
  required this.loading,
  required this.error,
  required this.empty,
});