IosDeviceFile.fromJson constructor

IosDeviceFile.fromJson(
  1. Map _json
)

Implementation

IosDeviceFile.fromJson(core.Map _json)
    : this(
        bundleId: _json.containsKey('bundleId')
            ? _json['bundleId'] as core.String
            : null,
        content: _json.containsKey('content')
            ? FileReference.fromJson(
                _json['content'] as core.Map<core.String, core.dynamic>)
            : null,
        devicePath: _json.containsKey('devicePath')
            ? _json['devicePath'] as core.String
            : null,
      );