MFCardViewError.fromJson constructor
Implementation
MFCardViewError.fromJson(Map<String, dynamic> json) {
borderColor = json['borderColor'];
borderRadius = json['borderRadius'];
boxShadow = json['boxShadow'] != null
? MFBoxShadow.fromJson(json['boxShadow'])
: null;
}