toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final group = this.group;
  final server = this.server;
  final serviceAccount = this.serviceAccount;
  final user = this.user;
  return {
    'group': ?group,
    'server': ?server,
    'serviceAccount': ?serviceAccount,
    'user': ?user,
  };
}