setBoolCustomUserAttribute method

void setBoolCustomUserAttribute(
  1. String key,
  2. bool value
)

Sets a boolean typed custom attribute.

Implementation

void setBoolCustomUserAttribute(String key, bool value) {
  final Map<String, dynamic> params = <String, dynamic>{
    'key': key,
    'value': value
  };
  _channel.invokeMethod('setBoolCustomUserAttribute', params);
}