RuntimeConfig_CodeInterpreterRuntimeConfig.fromJson constructor

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

Implementation

factory RuntimeConfig_CodeInterpreterRuntimeConfig.fromJson(
  Map<String, dynamic> json,
) {
  return RuntimeConfig_CodeInterpreterRuntimeConfig(
    fileInputGcsBucket: json['fileInputGcsBucket'] ?? '',
    fileOutputGcsBucket: json['fileOutputGcsBucket'] ?? '',
  );
}