CornerRadiusConfig constructor
Implementation
CornerRadiusConfig(Map<String, dynamic> input) {
try {
topLeft = input['topLeft'];
topRight = input['topRight'];
bottomRight = input['bottomRight'];
bottomLeft = input['bottomLeft'];
} catch (e) {
dt.log("Error processing CornerRadiusConfig ${e.toString()}");
}
}