InstanceMoveRequest.fromJson constructor
InstanceMoveRequest.fromJson(
- Map json_
Implementation
InstanceMoveRequest.fromJson(core.Map json_)
: this(
destinationZone: json_.containsKey('destinationZone')
? json_['destinationZone'] as core.String
: null,
targetInstance: json_.containsKey('targetInstance')
? json_['targetInstance'] as core.String
: null,
);