ThankYouPageTheme.fromMap constructor

ThankYouPageTheme.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory ThankYouPageTheme.fromMap(Map<String, dynamic> json) =>
    ThankYouPageTheme(
      headerFontSize: json["headerFontSize"],
      imageDescriptionFontSize: json["imageDescriptionFontSize"],
      descriptionFontSize: json["descriptionFontSize"],
      imageHeight: json["imageHeight"],
      imageWidth: json["imageWidth"],
      buttonFontSize: json["buttonFontSize"],
      buttonWidth: json["buttonWidth"],
      buttonIconSize: json["buttonIconSize"],
      visibilityTime: json["visibilityTime"],
    );