MerchantLocation.fromJson constructor

MerchantLocation.fromJson(
  1. Map json_
)

Implementation

MerchantLocation.fromJson(core.Map json_)
    : this(
        latitude: (json_['latitude'] as core.num?)?.toDouble(),
        longitude: (json_['longitude'] as core.num?)?.toDouble(),
      );