operator [] method

Object? operator [](
  1. String name
)

Get the value of the specified field name.

Implementation

Object? operator [] (String name){
  return getByName(name);
}