ProductLimit.fromJson constructor

ProductLimit.fromJson(
  1. Map json_
)

Implementation

ProductLimit.fromJson(core.Map json_)
  : this(
      limit: json_['limit'] as core.String?,
      scope: json_['scope'] as core.String?,
    );