toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final edgeTables = this.edgeTables;
  final name = this.name;
  final nodeTables = this.nodeTables;
  return {
    'edgeTables': ?edgeTables,
    'name': ?name,
    'nodeTables': ?nodeTables,
  };
}