getValue method

List<bool>? getValue()

(en) Get the value. If the manager class has not been set or there is no value, null is returned.

(ja) 値を取得します。 マネージャークラスが未設定の場合や、値が無い場合はnullが返ります。

Implementation

List<bool>? getValue() {
  if (elParams.p.manager != null) {
    final String? sid = getSID();
    if (sid != null) {
      return elParams.p.manager!.getFlags(sid);
    }
  }
  return null;
}