FormMultiMediaListTileDelegate constructor

const FormMultiMediaListTileDelegate({
  1. required Widget addLabel,
  2. IconData addIcon = Icons.add,
  3. IconData removeIcon = Icons.close,
})

A delegate to build a FormMultiMedia with a design of the type arranged in a list.

Specify the text to be added in addLabel.

Specify an icon for adding an item in addIcon and an icon for removing an item in removeIcon.

リストに並べるタイプのデザインを持つFormMultiMediaを構築するためのデリゲート。

addLabelに追加を行うためのテキストを指定してください。

addIconに追加時のアイコン、removeIconに各項目を削除するときのアイコンを指定します。

Implementation

const FormMultiMediaListTileDelegate({
  required this.addLabel,
  this.addIcon = Icons.add,
  this.removeIcon = Icons.close,
});