update abstract method

Future<int> update(
  1. String uri,
  2. ContentValues? values,
  3. String? selection,
  4. List<String>? selectionArgs,
)

update(uri: Uri, values: ContentValues?, selection: String?, selectionArgs: Array<String!>?): Int https://developer.android.com/reference/kotlin/android/content/ContentProvider#update

Implementation

Future<int> update(
  String uri,
  ContentValues? values,
  String? selection,
  List<String>? selectionArgs,
);