add method

void add(
  1. dynamic obj
)

データを追加する obj 追加するデータ

Implementation

void add(obj) {
  var op = 'AddRelation';
  this.set(op, obj);
}