Parameters constructor Null safety

Parameters(
  1. [Map<String, Object?>? parameters]
)

Creates new Parameters, optionally initialized with parameters from a plain map.

Implementation

factory Parameters([Map<String, Object?>? parameters]) =>
    ParametersImpl(parameters);