updateFill method

  1. @override
Future<void> updateFill(
  1. Fill fill,
  2. FillOptions changes
)
override

Implementation

@override
Future<void> updateFill(Fill fill, FillOptions changes) async {
  await _channel.invokeMethod('fill#update', <String, dynamic>{
    'fill': fill.id,
    'options': changes.toJson(),
  });
}