GuiCode constructor

GuiCode({
  1. String? type,
  2. String? code,
})

Returns a new GuiCode instance.

Implementation

GuiCode({
  this.type,
  this.code,
});