PeamanReceivedFollowRequest constructor

PeamanReceivedFollowRequest({
  1. String? uid,
  2. int? createdAt,
  3. int? updatedAt,
  4. bool accepted = false,
  5. bool ignored = false,
})

Implementation

PeamanReceivedFollowRequest({
  final String? uid,
  final int? createdAt,
  final int? updatedAt,
  this.accepted = false,
  this.ignored = false,
}) : super(
        uid: uid,
        createdAt: createdAt,
        updatedAt: updatedAt,
        extraData: {
          'accepted': accepted,
          'ignored': ignored,
        },
      );