customParams property

Map<String, dynamic>? customParams

Takes JSON with parameters that are not presented in the DocumentReader.

Implementation

Map<String, dynamic>? get customParams => _customParams;
void customParams=(Map<String, dynamic>? val)

Implementation

set customParams(Map<String, dynamic>? val) {
  _customParams = val;
  _set({"customParams": val});
}