toJson method
Implementation
@override
Object toJson() => {
if (bigQuery != null) 'bigQuery': bigQuery!.toJson(),
if (name.isNotDefault) 'name': name,
if (createTime != null) 'createTime': createTime!.toJson(),
if (updateTime != null) 'updateTime': updateTime!.toJson(),
if (etag.isNotDefault) 'etag': etag,
if (labels.isNotDefault) 'labels': labels,
if (description.isNotDefault) 'description': description,
if (serviceAgentType.isNotDefault)
'serviceAgentType': serviceAgentType.toJson(),
if (serviceAccountEmail.isNotDefault)
'serviceAccountEmail': serviceAccountEmail,
};