fromMap static method

DGive fromMap(
  1. FormMapTip f,
  2. Map m
)

Implementation

static DGive fromMap(FormMapTip f, Map m) {
  assert(m['statement_name'] == statementName);
  final _target = TranEngine.fromMap(f, m['target']);
  final _content = TranEngine.fromMap(f, m['content']);
  return OGive(target: _target, content: _content);
}