@ -33,6 +33,7 @@ class AyatTangheemTypeMapped {
class AyatTangheemTypeMappedData {
class AyatTangheemTypeMappedData {
String tangheemTypeId ;
String tangheemTypeId ;
String tangheemTypeName ;
String tangheemTypeName ;
String tangheemTypeDescription ;
String ayaTangheemTypeId ;
String ayaTangheemTypeId ;
int surahNo ;
int surahNo ;
String surahNameEn ;
String surahNameEn ;
@ -49,6 +50,7 @@ class AyatTangheemTypeMappedData {
AyatTangheemTypeMappedData (
AyatTangheemTypeMappedData (
{ this . tangheemTypeId ,
{ this . tangheemTypeId ,
this . tangheemTypeName ,
this . tangheemTypeName ,
this . tangheemTypeDescription ,
this . ayaTangheemTypeId ,
this . ayaTangheemTypeId ,
this . surahNo ,
this . surahNo ,
this . surahNameEn ,
this . surahNameEn ,
@ -65,6 +67,7 @@ class AyatTangheemTypeMappedData {
AyatTangheemTypeMappedData . fromJson ( Map < String , dynamic > json ) {
AyatTangheemTypeMappedData . fromJson ( Map < String , dynamic > json ) {
tangheemTypeId = json [ ' tangheemTypeId ' ] ;
tangheemTypeId = json [ ' tangheemTypeId ' ] ;
tangheemTypeName = json [ ' tangheemTypeName ' ] ;
tangheemTypeName = json [ ' tangheemTypeName ' ] ;
tangheemTypeDescription = json [ ' tangheemTypeDescription ' ] ;
ayaTangheemTypeId = json [ ' ayaTangheemTypeId ' ] ;
ayaTangheemTypeId = json [ ' ayaTangheemTypeId ' ] ;
surahNo = json [ ' surahNo ' ] ;
surahNo = json [ ' surahNo ' ] ;
surahNameEn = json [ ' surahNameEn ' ] ;
surahNameEn = json [ ' surahNameEn ' ] ;
@ -93,6 +96,7 @@ class AyatTangheemTypeMappedData {
final Map < String , dynamic > data = new Map < String , dynamic > ( ) ;
final Map < String , dynamic > data = new Map < String , dynamic > ( ) ;
data [ ' tangheemTypeId ' ] = this . tangheemTypeId ;
data [ ' tangheemTypeId ' ] = this . tangheemTypeId ;
data [ ' tangheemTypeName ' ] = this . tangheemTypeName ;
data [ ' tangheemTypeName ' ] = this . tangheemTypeName ;
data [ ' tangheemTypeDescription ' ] = this . tangheemTypeDescription ;
data [ ' ayaTangheemTypeId ' ] = this . ayaTangheemTypeId ;
data [ ' ayaTangheemTypeId ' ] = this . ayaTangheemTypeId ;
data [ ' surahNo ' ] = this . surahNo ;
data [ ' surahNo ' ] = this . surahNo ;
data [ ' surahNameEn ' ] = this . surahNameEn ;
data [ ' surahNameEn ' ] = this . surahNameEn ;
@ -124,16 +128,18 @@ class TangheemProperty {
String tangheemTypePropertyId ;
String tangheemTypePropertyId ;
String propertyText ;
String propertyText ;
bool isInsideTable ;
bool isInsideTable ;
String textColor ;
int orderNo ;
int orderNo ;
String ayaTangheemTypePropertyId ;
String ayaTangheemTypePropertyId ;
String propertyValue ;
String propertyValue ;
TangheemProperty ( { this . tangheemTypePropertyId , this . propertyText , this . isInsideTable , this . orderNo, this . ayaTangheemTypePropertyId , this . propertyValue } ) ;
TangheemProperty ( { this . tangheemTypePropertyId , this . propertyText , this . isInsideTable , this . textColor, this . orderNo, this . ayaTangheemTypePropertyId , this . propertyValue } ) ;
TangheemProperty . fromJson ( Map < String , dynamic > json ) {
TangheemProperty . fromJson ( Map < String , dynamic > json ) {
tangheemTypePropertyId = json [ ' tangheemTypePropertyId ' ] ;
tangheemTypePropertyId = json [ ' tangheemTypePropertyId ' ] ;
propertyText = json [ ' propertyText ' ] ;
propertyText = json [ ' propertyText ' ] ;
isInsideTable = json [ ' isInsideTable ' ] ;
isInsideTable = json [ ' isInsideTable ' ] ;
textColor = json [ ' textColor ' ] ;
orderNo = json [ ' orderNo ' ] ;
orderNo = json [ ' orderNo ' ] ;
ayaTangheemTypePropertyId = json [ ' ayaTangheemTypePropertyId ' ] ;
ayaTangheemTypePropertyId = json [ ' ayaTangheemTypePropertyId ' ] ;
propertyValue = json [ ' propertyValue ' ] ;
propertyValue = json [ ' propertyValue ' ] ;
@ -144,6 +150,7 @@ class TangheemProperty {
data [ ' tangheemTypePropertyId ' ] = this . tangheemTypePropertyId ;
data [ ' tangheemTypePropertyId ' ] = this . tangheemTypePropertyId ;
data [ ' propertyText ' ] = this . propertyText ;
data [ ' propertyText ' ] = this . propertyText ;
data [ ' isInsideTable ' ] = this . isInsideTable ;
data [ ' isInsideTable ' ] = this . isInsideTable ;
data [ ' textColor ' ] = this . textColor ;
data [ ' orderNo ' ] = this . orderNo ;
data [ ' orderNo ' ] = this . orderNo ;
data [ ' ayaTangheemTypePropertyId ' ] = this . ayaTangheemTypePropertyId ;
data [ ' ayaTangheemTypePropertyId ' ] = this . ayaTangheemTypePropertyId ;
data [ ' propertyValue ' ] = this . propertyValue ;
data [ ' propertyValue ' ] = this . propertyValue ;