create method
Create a new role.
final role = await server.roles.create('New Role');
Implementation
Future<Role> create(
{required String name,
required List<Permission> permissions,
required Color color,
bool hoist = false,
bool mentionable = false,
String? reason}) =>
_datastore.role.create(_serverId.value, name, permissions, color, hoist, mentionable, reason);