UriSettings.fromJson constructor

UriSettings.fromJson(
  1. Map json_
)

Implementation

UriSettings.fromJson(core.Map json_)
  : this(
      cartUriTemplate: json_['cartUriTemplate'] as core.String?,
      checkoutUriTemplate: json_['checkoutUriTemplate'] as core.String?,
    );