CoreWidget constructor

const CoreWidget({
  1. Key? key,
  2. Map initArgs = const {},
})

Abstract implementation of base control widget, that initializes CoreContext and handles state management and lifecycle of given resources. initArgs are passed to CoreContext.

Implementation

const CoreWidget({
  super.key,
  this.initArgs = const {},
});