MainDiv.fromJson constructor

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

Implementation

MainDiv.fromJson(Map<String, dynamic> json) {
  border = json['border'];
  borderRadius = json['borderRadius'];
  backgroundColor = json['backgroundColor'];
  borderWidthValue = json['borderWidthValue'];
  borderWidth = json['borderWidth'];
  radius = json['radius'];
  borderColor = json['borderColor'];
  borderStyle = json['borderStyle'];
}