toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final blogId = this.blogId;
  final hasAdminAccess = this.hasAdminAccess;
  final kind = this.kind;
  final photosAlbumKey = this.photosAlbumKey;
  final role = this.role;
  final userId = this.userId;
  return {
    'blogId': ?blogId,
    'hasAdminAccess': ?hasAdminAccess,
    'kind': ?kind,
    'photosAlbumKey': ?photosAlbumKey,
    'role': ?role,
    'userId': ?userId,
  };
}