toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() => {
  'password': password,
  'ttl': ttl,
  'uris': uris.map((v) => v).toList(),
  'username': username,
};