CourierBrandInApp.fromJson constructor

CourierBrandInApp.fromJson(
  1. Map<String, dynamic>? json
)

Implementation

factory CourierBrandInApp.fromJson(Map<String, dynamic>? json) {
  return CourierBrandInApp(
    disableCourierFooter: json?['disableCourierFooter'],
  );
}