updateLine method

  1. @override
Future<void> updateLine(
  1. Line line,
  2. LineOptions changes
)
override

Implementation

@override
Future<void> updateLine(Line line, LineOptions changes) async {
  await _channel.invokeMethod('line#update', <String, dynamic>{
    'line': line.id,
    'options': changes.toJson(),
  });
}