ConsentState constructor

ConsentState({
  1. bool isLoading = false,
  2. String? error,
})

Implementation

ConsentState({
  this.isLoading = false,
  this.error,
});