fromJson static method

Role fromJson(
  1. Map<String, dynamic> json
)

Implementation

static Role fromJson(Map<String, dynamic> json) {
  return Role(
    id: json['id'],
    name: json['name'],
    color: json['color'],
    hoist: json['hoist'],
    position: json['position'],
    permissions: json['permissions'],
    managed: json['managed'],
    mentionable: json['mentionable'],
    tags: ifNotNull(RoleTags.fromJson, json['tags']),
  );
}