InsertWithoutNameReference constructor

InsertWithoutNameReference({
  1. required String name,
  2. required String value,
})

Creates an instruction that inserts a new dynamic table entry with literal name and value.

Implementation

InsertWithoutNameReference({
  required this.name,
  required this.value,
});