BigQueryDestination.fromJson constructor

BigQueryDestination.fromJson(
  1. Object? j
)

Implementation

factory BigQueryDestination.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return BigQueryDestination(
    outputUri: switch (json['outputUri']) {
      null => '',
      Object $1 => decodeString($1),
    },
  );
}