updateScript function

void updateScript(
  1. WidgetRef ref,
  2. String code
)

Implementation

void updateScript(WidgetRef ref, String code) {
  ref.read(scriptProvider.notifier).update((state) => state + code);
}