You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			759 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			759 B
		
	
	
	
		
			Dart
		
	
class GetNotificationButtonsList {
 | 
						|
  String? bUTTONACTION;
 | 
						|
  String? bUTTONICON;
 | 
						|
  String? bUTTONLABEL;
 | 
						|
  int? bUTTONSEQ;
 | 
						|
 | 
						|
  GetNotificationButtonsList(
 | 
						|
      {this.bUTTONACTION, this.bUTTONICON, this.bUTTONLABEL, this.bUTTONSEQ});
 | 
						|
 | 
						|
  GetNotificationButtonsList.fromJson(Map<String, dynamic> json) {
 | 
						|
    bUTTONACTION = json['BUTTON_ACTION'];
 | 
						|
    bUTTONICON = json['BUTTON_ICON'];
 | 
						|
    bUTTONLABEL = json['BUTTON_LABEL'];
 | 
						|
    bUTTONSEQ = json['BUTTON_SEQ'];
 | 
						|
  }
 | 
						|
 | 
						|
  Map<String, dynamic> toJson() {
 | 
						|
    final Map<String, dynamic> data = new Map<String, dynamic>();
 | 
						|
    data['BUTTON_ACTION'] = this.bUTTONACTION;
 | 
						|
    data['BUTTON_ICON'] = this.bUTTONICON;
 | 
						|
    data['BUTTON_LABEL'] = this.bUTTONLABEL;
 | 
						|
    data['BUTTON_SEQ'] = this.bUTTONSEQ;
 | 
						|
    return data;
 | 
						|
  }
 | 
						|
} |