updateContextWithMap method

void updateContextWithMap(
  1. Map<String, Object> context
)

Update context directely with map for <String, Object>

Implementation

void updateContextWithMap(Map<String, Object> context) {
  _context.addAll(context);

  print('################# The new context is ' +
      '$_context ######################@');
}