Shortcode.block constructor

Shortcode.block({
  1. required String name,
  2. required List<Argument> arguments,
  3. required String body,
})

Implementation

Shortcode.block({
  required this.name,
  required List<Argument> arguments,
  required String body,
}) : arguments = [...arguments, Argument(name: 'body', value: body)];