get method

dynamic get(
  1. String k
)

Implementation

dynamic get(String k) {
  return !this.prodModel
    ? this.dev[k]
    : this.prod[k];
}