toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final mountPath = this.mountPath;
  final projectId = this.projectId;
  final secret = this.secret;
  final versions = this.versions;
  return {
    'mountPath': ?mountPath,
    'projectId': ?projectId,
    'secret': ?secret,
    'versions': ?versions,
  };
}