LogicalTableSource.fromJson constructor
Implementation
factory LogicalTableSource.fromJson(Map<String, dynamic> json) {
return LogicalTableSource(
joinInstruction: json['JoinInstruction'] != null
? JoinInstruction.fromJson(
json['JoinInstruction'] as Map<String, dynamic>)
: null,
physicalTableId: json['PhysicalTableId'] as String?,
);
}