MoveAssignmentRequest.fromJson constructor

MoveAssignmentRequest.fromJson(
  1. Map json_
)

Implementation

MoveAssignmentRequest.fromJson(core.Map json_)
    : this(
        assignmentId: json_.containsKey('assignmentId')
            ? json_['assignmentId'] as core.String
            : null,
        destinationId: json_.containsKey('destinationId')
            ? json_['destinationId'] as core.String
            : null,
      );