IosDeviceFile.fromJson constructor

IosDeviceFile.fromJson(
  1. Map json_
)

Implementation

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