toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final hostRedirect = this.hostRedirect;
  final httpsRedirect = this.httpsRedirect;
  final pathRedirect = this.pathRedirect;
  final prefixRedirect = this.prefixRedirect;
  final redirectResponseCode = this.redirectResponseCode;
  final stripQuery = this.stripQuery;
  return {
    'hostRedirect': ?hostRedirect,
    'httpsRedirect': ?httpsRedirect,
    'pathRedirect': ?pathRedirect,
    'prefixRedirect': ?prefixRedirect,
    'redirectResponseCode': ?redirectResponseCode,
    'stripQuery': ?stripQuery,
  };
}