DocumentSelectionScreen constructor

DocumentSelectionScreen({
  1. Key? key,
  2. required List documentTypes,
  3. required dynamic onSelectedDocument(
    1. String
    ),
  4. Map<String, dynamic>? screenTexts,
  5. String language = "en",
  6. dynamic bgColor,
})

Implementation

DocumentSelectionScreen(
    {Key? key,
    required this.documentTypes,
    required this.onSelectedDocument,
    this.screenTexts,this.language="en",this.bgColor})
    : super(key: key);