Closed keyonghan closed 3 years ago
/cc @kevmoo I see you have been working on this repo, could you please take a look? This is blocking us running some cronjobs for prod development workflow. Please help reassign as you see fit. Thanks!
Fix published in https://pub.dev/packages/googleapis/versions/6.0.0
We (flutter/cocoon) recently migrated our backend to null safety, and started hitting below error (with googleapis version 3.0.0). I guess the culprit is: https://github.com/google/googleapis.dart/blob/master/generated/googleapis/lib/bigquery/v2.dart#L11097 where
v: _json.containsKey('v') ? _json['v'] as core.Object : null
should be updated tov: _json.containsKey('v') ? _json['v'] as core.Object? : null
to consider the value null case.Related: https://github.com/flutter/flutter/issues/90019