toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final containers = this.containers;
  final group = this.group;
  final kind = this.kind;
  final name = this.name;
  final ns = this.ns;
  return {
    'containers': ?containers,
    'group': ?group,
    'kind': ?kind,
    'name': ?name,
    'ns': ?ns,
  };
}