boolToBuff method

BuffBoolean boolToBuff(
  1. bool target,
  2. String key
)

Implementation

BuffBoolean boolToBuff(bool target, String key) {
  BuffBoolean buff = BuffBoolean();
  buff.key = key;
  buff.value = target;
  return buff;
}