AssembleDataResponse.fromJson constructor

AssembleDataResponse.fromJson(
  1. Object? j
)

Implementation

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