call method

dynamic call([
  1. List? positionalParams,
  2. Map<String, dynamic>? namedParams
])

Used only for constructors. It creates new instances with the map of parameters passed

Implementation

call([List? positionalParams, Map<String, dynamic>? namedParams]) => $call?.call(positionalParams, namedParams);