internal_store_command static method

Group internal_store_command(
  1. String type,
  2. Widget w,
  3. bool useSuccess
)

just for internal use

Implementation

static Group internal_store_command(String type, Widget w, bool useSuccess) =>
    Group(
      prefix: 'execute store ${useSuccess ? 'success ' : 'result '}$type run',
      groupMin: 1000,
      children: [w],
    );