updateAccount<T extends Auth<AuthKeys> > method
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,
);
}