audience property
String?
get
audience
Audience: identifies the recipients the token is intended for (key 3).
Implementation
String? get audience => _map[3] as String?;
set
audience
(String? value)
Implementation
set audience(String? value) => _set(3, value);