update static method

Future<bool> update(
  1. UpdateModel model
)

更新

Implementation

static Future<bool> update(UpdateModel model) async {
  return await _channel.invokeMethod('update', {
    'model': model.toJson(),
  });
}