Serializes the role into its standard JSON representation.
Example:
final json = role.toJson(); print(json['name']);
@override Map<String, dynamic> toJson() { return { 'name': name, 'description': description}; }