mergePartialAndUserVariables method

  1. @protected
Map<String, Object> mergePartialAndUserVariables(
  1. Map<String, dynamic> userVariables
)

Merge the partial variables with the user variables.

Implementation

@protected
Map<String, Object> mergePartialAndUserVariables(
  final Map<String, dynamic> userVariables,
) {
  return {...?partialVariables, ...userVariables};
}