yoomoney_flutter/lib/models/customization_settings.dart

19 lines
527 B
Dart
Raw Permalink Normal View History

2022-07-03 20:52:22 +03:00
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
};
}