customDocuments property
Implementation
List<Map<String, dynamic>> get customDocuments =>
(dashboardConfiguration['kycCustomDocuments'] as List?)
?.whereType<Map>()
.map((document) => Map<String, dynamic>.from(document))
.toList(growable: false) ??
const <Map<String, dynamic>>[];