OnyxSdkPenArea constructor

const OnyxSdkPenArea({
  1. Key? key,
  2. Duration refreshDelay = const Duration(seconds: 1),
  3. required Widget child,
})

Implementation

const OnyxSdkPenArea({
  super.key,
  this.refreshDelay = const Duration(seconds: 1),
  required this.child,
});