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,
      );