customization_settings.dart 527 B

12345678910111213141516171819
  1. import 'package:flutter/cupertino.dart';
  2. class CustomizationSettings {
  3. final Color mainScheme;
  4. final bool showYooKassaLogo;
  5. const CustomizationSettings([this.mainScheme = const Color.fromARGB(255, 0, 112, 240), this.showYooKassaLogo = true]);
  6. Map<String, dynamic> toJson() =>
  7. {
  8. 'mainScheme' : {
  9. 'red': mainScheme.red,
  10. 'blue': mainScheme.blue,
  11. 'green': mainScheme.green,
  12. 'alpha': mainScheme.alpha
  13. },
  14. 'showYooKassaLogo': showYooKassaLogo
  15. };
  16. }