setAttribute static method

Future<void> setAttribute(
  1. PLYAttribute attribute,
  2. String value
)

Implementation

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