CornerRadiusConfig constructor

CornerRadiusConfig(
  1. Map<String, dynamic> input
)

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()}");
  }
}