authData function

dynamic authData({
  1. String? key,
})

Get the user data

Implementation

authData({String? key}) {
  return Auth.data(key: key);
}