NudgeAppComponentViewState constructor

NudgeAppComponentViewState({
  1. required double height,
  2. required double width,
  3. String? errorMessage,
  4. bool isViewReady = false,
  5. String viewId = '',
})

Implementation

NudgeAppComponentViewState({
  required this.height,
  required this.width,
  this.errorMessage,
  this.isViewReady = false,
  this.viewId = '',
});