toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final gecos = this.gecos;
  final gid = this.gid;
  final homeDirectory = this.homeDirectory;
  final name = this.name;
  final operatingSystemType = this.operatingSystemType;
  final primary = this.primary;
  final shell = this.shell;
  final systemId = this.systemId;
  final uid = this.uid;
  final username = this.username;
  return {
    'accountId': ?accountId,
    'gecos': ?gecos,
    'gid': ?gid,
    'homeDirectory': ?homeDirectory,
    'name': ?name,
    'operatingSystemType': ?operatingSystemType,
    'primary': ?primary,
    'shell': ?shell,
    'systemId': ?systemId,
    'uid': ?uid,
    'username': ?username,
  };
}