yoomoney_flutter/lib/models/customization_settings.dart
Искандар Р. Шабаев b7c7e3fd69 Initial commit
2022-07-03 20:52:22 +03:00

19 lines
527 B
Dart

import 'package:flutter/cupertino.dart';
class CustomizationSettings {
final Color mainScheme;
final bool showYooKassaLogo;
const CustomizationSettings([this.mainScheme = const Color.fromARGB(255, 0, 112, 240), this.showYooKassaLogo = true]);
Map<String, dynamic> toJson() =>
{
'mainScheme' : {
'red': mainScheme.red,
'blue': mainScheme.blue,
'green': mainScheme.green,
'alpha': mainScheme.alpha
},
'showYooKassaLogo': showYooKassaLogo
};
}