Setting custom claims (via Auth.setCustomUserClaims) only allows the user to pass in a Map<String, String>, while the JS equivalent (as well as the official Node.js SDK) allows any value. Isn't it meant to be Map<String, dynamic>? I'm trying to set it to {"isAdmin": true}, but it's not allowed.
Setting custom claims (via
Auth.setCustomUserClaims) only allows the user to pass in aMap<String, String>, while the JS equivalent (as well as the official Node.js SDK) allows any value. Isn't it meant to beMap<String, dynamic>? I'm trying to set it to{"isAdmin": true}, but it's not allowed.