EsigDebugBottomSheet constructor

const EsigDebugBottomSheet({
  1. Key? key,
  2. double? height,
  3. List<EsigDebugSection> errors = const [],
  4. TextAlign textAlign = TextAlign.start,
})

Implementation

const EsigDebugBottomSheet({
  Key? key,
  this.height,
  this.errors = const [],
  this.textAlign = TextAlign.start,
}) : super(key: key);