PNAppMessageMargins constructor

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

Implementation

PNAppMessageMargins(Map<String, dynamic> input) {
  try {
    top = input['top'];
    right = input['right'];
    bottom = input['bottom'];
    left = input['left'];
  } catch (e) {
    dt.log("Error processing PNAppMessageMargins ${e.toString()}");
  }
}