operator [] method

Future operator [](
  1. dynamic key
)

操作符重载:读取数据

Implementation

Future operator [](dynamic key) async {
  return get(key);
}