updateAccount<T extends Auth<AuthKeys>> method

Future<T?> updateAccount<T extends Auth<AuthKeys>>(
  1. Map<String, dynamic> data, {
  2. String? id,
  3. bool notifiable = true,
})

Implementation

Future<T?> updateAccount<T extends Auth>(
  Map<String, dynamic> data, {
  String? id,
  bool notifiable = true,
}) {
  return _i<T>("updateAccount").update(
    data,
    id: id,
    notifiable: notifiable,
  );
}