NSDictionary constructor

NSDictionary(
  1. Map value, {
  2. InitSubclass init = _new,
})

Implementation

NSDictionary(Map value, {InitSubclass init = _new}) : super(value, init) {
  value = Map.of(value);
}