StatefulComponent constructor

StatefulComponent({
  1. String? key,
})

Create a stateful component

Implementation

StatefulComponent({super.key})
    : instanceId = '${DateTime.now().millisecondsSinceEpoch}.${Random().nextDouble()}',
      typeName = _extractTypeName() {
  scheduleUpdate = _defaultScheduleUpdate;
}