VmAttachmentDetails.fromJson constructor

VmAttachmentDetails.fromJson(
  1. Map json_
)

Implementation

VmAttachmentDetails.fromJson(core.Map json_)
    : this(
        deviceName: json_.containsKey('deviceName')
            ? json_['deviceName'] as core.String
            : null,
      );