setAttribute method Null safety
- PLYAttribute attribute,
- String value
Implementation
static Future<void> setAttribute(PLYAttribute attribute, String value) async {
return await _channel.invokeMethod('setAttribute',
<String, dynamic>{'attribute': attribute.index, 'value': value});
}