CarpenterRuntimeScope constructor

const CarpenterRuntimeScope({
  1. Key? key,
  2. required CarpenterRuntime runtime,
  3. required Widget child,
})

Создает runtime scope.

Implementation

const CarpenterRuntimeScope({
  super.key,
  required this.runtime,
  required super.child,
});