forwardingServer constant

({String host, String path, int port}) const forwardingServer

Implementation

static const forwardingServer = (
  host: String.fromEnvironment(
    'FORWARDING_SERVER_HOST',
    defaultValue: 'localhost',
  ),
  port: int.fromEnvironment('FORWARDING_SERVER_PORT', defaultValue: 8143),
  path: String.fromEnvironment(
    'FORWARDING_SERVER_PATH',
    defaultValue: 'forward',
  ),
);