updateContext method

void updateContext(
  1. Map<String, dynamic> updates
)

Update context variables

Implementation

void updateContext(Map<String, dynamic> updates) {
  _context = {..._context, ...updates};
}