removeLayout method

void removeLayout(
  1. String key
)

(en)Removes a layout registered with this class. Nothing happens if you specify an unregistered key.

(ja)このクラスに登録されたレイアウトを削除します。 未登録のキーを指定した場合は何も起こりません。

  • key : layout key.

Implementation

void removeLayout(String key) {
  if (_buffLayouts.containsKey(key)) {
    _buffLayouts.remove(key);
  }
}