ExecutableCodePart constructor

ExecutableCodePart({
  1. required CodeLanguage language,
  2. required String code,
  3. bool? isThought,
})

Implementation

ExecutableCodePart({
  required this.language,
  required this.code,
  bool? isThought,
}) : super(
        isThought: isThought,
        thoughtSignature: null,
      );