put method

dynamic put(
  1. Object key,
  2. dynamic value
)

Implementation

put(Object key,dynamic value){
  this[key]=value;
}