applyDecorations method
Apply decorations to the reader.
Implementation
Future<void> applyDecorations(
String id,
List<ReaderDecoration> decorations,
) async {
return await _invokeMethod(_ReaderChannelMethodInvoke.applyDecorations, [
id,
decorations.map((d) => d.toJson()),
]);
}