ThirdPartyFileService.fromJson constructor

ThirdPartyFileService.fromJson(
  1. Map json_
)

Implementation

ThirdPartyFileService.fromJson(core.Map json_)
  : this(
      fileShare: json_['fileShare'] as core.String?,
      network: json_['network'] as core.String?,
      servers: (json_['servers'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );