getConversationLevel method

ConversationLevel getConversationLevel({
  1. required Conversation conversation,
  2. required int pushInitialBranchAfter,
  3. int? fadeTime,
})

Get a suitable level for the given conversation.

Implementation

ConversationLevel getConversationLevel({
  required final Conversation conversation,
  required final int pushInitialBranchAfter,
  final int? fadeTime,
}) =>
    ConversationLevel(
      worldContext: this,
      pushInitialBranchAfter: pushInitialBranchAfter,
      conversation: conversation,
      fadeTime: fadeTime,
    );