Bank constructor

Bank({
  1. required String sId,
  2. required String? name,
  3. required String? code,
  4. required bool? isPreview,
  5. required String sTypename,
})

Implementation

Bank(
    {required this.sId,
    required this.name,
    required this.code,
    required this.logo,
    required this.isPreview,
    required this.sTypename});