Constants.custom constructor
Constants.custom({})
Implementation
factory Constants.custom({
required String authorization,
required String order,
required String keys,
required String wallet,
}) {
return Constants(
authorization: authorization,
order: order,
keys: keys,
wallet: wallet,
);
}