Servicer constructor

Servicer({
  1. bool? isIntegrated,
  2. String? servicerAddressType,
  3. List<String>? liabilityType,
  4. String? processorName,
  5. String? id,
  6. List<AuthSteps>? authSteps,
  7. String? forgotPasswordUrl,
  8. String? logoUrl,
  9. String? loginUrl,
  10. String? name,
  11. Configuration? configuration,
  12. num? rating,
  13. List<ServicerAddress>? servicerAddress,
})

Implementation

Servicer(
    {bool? isIntegrated,
    String? servicerAddressType,
    List<String>? liabilityType,
    String? processorName,
    String? id,
    List<AuthSteps>? authSteps,
    String? forgotPasswordUrl,
    String? logoUrl,
    String? loginUrl,
    String? name,
    Configuration? configuration,
    num? rating,
    List<ServicerAddress>? servicerAddress}) {
  _isIntegrated = isIntegrated;
  _servicerAddressType = servicerAddressType;
  _liabilityType = liabilityType;
  _processorName = processorName;
  _id = id;
  _authSteps = authSteps;
  _forgotPasswordUrl = forgotPasswordUrl;
  _logoUrl = logoUrl;
  _loginUrl = loginUrl;
  _name = name;
  _configuration = configuration;
  _rating = rating;
  _servicerAddress = servicerAddress;
}