OutputLocationRef.fromJson constructor

OutputLocationRef.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory OutputLocationRef.fromJson(Map<String, dynamic> json) {
  return OutputLocationRef(
    destinationRefId: json['destinationRefId'] as String?,
  );
}