ModelServerCommandField constructor

const ModelServerCommandField({
  1. required String key,
  2. ModelServerCommandField? reference,
})

Field specification class used in ModelServerCommandBase.

ModelServerCommandBaseで用いるフィールド指定クラス。

Implementation

const ModelServerCommandField({
  required this.key,
  this.reference,
});