ParameterObject constructor

ParameterObject(
  1. Map<String, dynamic>? parameterObject
)

This is used if you have a nested object in your parameters ie. product: {id: "id", name: "name"}. You can create multiple levels of nesting by including objects within objects.

Implementation

ParameterObject(Map<String, dynamic>? parameterObject)
    : super(parameterObject);