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