UserDoc constructor

const UserDoc({
  1. required String uid,
  2. bool cacheOnly = true,
  3. required Widget builder(
    1. User?
    ),
  4. bool sync = false,
  5. Key? key,
})

Implementation

const UserDoc({
  required this.uid,
  this.cacheOnly = true,
  required this.builder,
  this.sync = false,
  super.key,
});