LogicalTableSource.fromJson constructor

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

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?,
  );
}