TextBar constructor

const TextBar({
  1. required String hintText,
  2. String? resourceId,
  3. String? userId,
  4. String? communityId,
  5. dynamic notifyParent(
    1. String body
    )?,
  6. String? parentid,
  7. Key? key,
})

Implementation

const TextBar({
  required this.hintText,
  this.resourceId,
  this.userId,
  this.communityId,
  this.notifyParent,
  this.parentid,
  final Key? key,
}) : super(key: key);