MainSubmitBtn.fromJson constructor

MainSubmitBtn.fromJson(
  1. Map<String, dynamic> json
)

Implementation

MainSubmitBtn.fromJson(Map<String, dynamic> json) {
  border = json['border'];
  borderRadius = json['borderRadius'];
  backgroundColor = json['backgroundColor'];
  textAlign = json['textAlign'];
  text = json['text'];
  fontFamily = json['fontFamily'];
  fontWeight = json['fontWeight'];
  color = json['color'];
  textDecoration = json['textDecoration'];
  textTransform = json['textTransform'];
}