toJson method

  1. @override
Object toJson()
override

Implementation

@override
Object toJson() {
  return {
    if (bigqueryDestination != null)
      'bigqueryDestination': bigqueryDestination!.toJson(),
    if (tfrecordDestination != null)
      'tfrecordDestination': tfrecordDestination!.toJson(),
    if (csvDestination != null) 'csvDestination': csvDestination!.toJson(),
  };
}