Record.from constructor

Record.from(
  1. String k,
  2. dynamic v
)

Implementation

Record.from(String k, dynamic v) {
  _fields[k] = v;
}