CarriersCarrier.fromJson constructor

CarriersCarrier.fromJson(
  1. Map json_
)

Implementation

CarriersCarrier.fromJson(core.Map json_)
  : this(
      country: json_['country'] as core.String?,
      eddServices: (json_['eddServices'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      name: json_['name'] as core.String?,
      services: (json_['services'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );