toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  _json['containerUrl'] = containerUrl;
  _json['path'] = path;
  _json['args'] = args;
  _json['hasPullSecret'] = hasPullSecret;
  return _json;
}