getConversationLevel method
ConversationLevel
getConversationLevel({
- required Conversation conversation,
- required int pushInitialBranchAfter,
- 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,
);